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.
12 lines
419 B
12 lines
419 B
from django.db import models
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
class Preferences(models.Model):
|
|
""" Definition of the ticket's settings"""
|
|
|
|
publish_address = models.EmailField(
|
|
help_text = _("Email address to publish the new tickets (leave empty for no publications)"),
|
|
max_length = 1000,
|
|
null = True)
|
|
class Meta:
|
|
verbose_name = _("Ticket's settings")
|
|
|