mirror of
https://github.com/MOIS3Y/logs-collector.git
synced 2025-02-01 17:30:52 +01:00
10 lines
193 B
Python
10 lines
193 B
Python
from django.forms import ModelForm
|
|
|
|
from .models import Ticket
|
|
|
|
|
|
class TicketForm(ModelForm):
|
|
class Meta:
|
|
model = Ticket
|
|
fields = ['number', 'platform', 'resolved', 'note']
|