8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-19 04:33:09 +00:00
re2o/tickets/preferences/models.py

12 lines
419 B
Python

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")