mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
303 B
11 lines
303 B
from django import forms
|
|
from django.forms import ModelForm, Form
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from .models import Preferences
|
|
|
|
class EditPreferencesForm(ModelForm):
|
|
""" Edit the ticket's settings"""
|
|
class Meta:
|
|
model = Preferences
|
|
fields = '__all__'
|
|
|