2020-04-22 16:55:33 +00:00
|
|
|
# -*- mode: python; coding: utf-8 -*-
|
2020-11-23 16:06:37 +00:00
|
|
|
# Re2o est un logiciel d'administration développé initiallement au Rézo Metz. Il
|
2020-04-22 16:55:33 +00:00
|
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
# quelques clics.
|
|
|
|
#
|
|
|
|
# Copyright © 2019 Arthur Grisel-Davy
|
|
|
|
# Copyright © 2020 Gabriel Détraz
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
"""
|
|
|
|
Ticket form
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2019-07-07 17:09:56 +00:00
|
|
|
from django import forms
|
2020-04-22 19:37:21 +00:00
|
|
|
from django.template.loader import render_to_string
|
2019-07-07 17:09:56 +00:00
|
|
|
from django.forms import ModelForm, Form
|
2019-07-10 08:28:16 +00:00
|
|
|
from re2o.field_permissions import FieldPermissionFormMixin
|
2021-01-02 22:19:49 +00:00
|
|
|
from re2o.mixins import FormRevMixin
|
|
|
|
from re2o.widgets import AutocompleteModelWidget
|
2019-07-10 08:28:16 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2019-07-07 17:09:56 +00:00
|
|
|
|
2020-04-23 00:42:18 +00:00
|
|
|
from .models import Ticket, CommentTicket
|
2019-07-07 17:09:56 +00:00
|
|
|
|
|
|
|
|
2020-04-22 19:37:21 +00:00
|
|
|
class NewTicketForm(FormRevMixin, ModelForm):
|
2020-04-28 09:59:13 +00:00
|
|
|
"""Form used to create tickets."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2019-07-10 08:28:16 +00:00
|
|
|
class Meta:
|
|
|
|
model = Ticket
|
2019-11-04 16:55:03 +00:00
|
|
|
fields = ["title", "description", "email"]
|
|
|
|
|
2020-04-22 19:37:21 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2020-04-23 01:21:11 +00:00
|
|
|
request = kwargs.pop("request", None)
|
2020-04-22 19:37:21 +00:00
|
|
|
super(NewTicketForm, self).__init__(*args, **kwargs)
|
|
|
|
if request.user.is_authenticated:
|
|
|
|
self.fields.pop('email')
|
|
|
|
self.instance.user = request.user
|
|
|
|
self.fields['description'].help_text = render_to_string('tickets/help_text.html')
|
2020-04-23 00:42:18 +00:00
|
|
|
self.instance.language = getattr(request, "LANGUAGE_CODE", "en")
|
2020-04-23 01:21:11 +00:00
|
|
|
self.instance.request = request
|
2020-04-22 19:37:21 +00:00
|
|
|
|
2019-08-06 07:41:27 +00:00
|
|
|
|
2020-04-22 19:37:21 +00:00
|
|
|
class EditTicketForm(FormRevMixin, ModelForm):
|
2020-04-28 09:59:13 +00:00
|
|
|
"""Form used to edit tickets."""
|
2019-11-04 16:55:03 +00:00
|
|
|
|
2019-08-06 07:41:27 +00:00
|
|
|
class Meta:
|
|
|
|
model = Ticket
|
2020-04-22 19:37:21 +00:00
|
|
|
fields = "__all__"
|
2020-12-28 18:45:25 +00:00
|
|
|
widgets = {
|
2021-01-02 22:19:49 +00:00
|
|
|
"user": AutocompleteModelWidget(
|
2020-12-28 18:45:25 +00:00
|
|
|
url="/users/user-autocomplete",
|
|
|
|
),
|
|
|
|
}
|
2020-04-22 19:37:21 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(EditTicketForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['email'].required = False
|
|
|
|
|
2020-04-23 00:42:18 +00:00
|
|
|
|
|
|
|
class CommentTicketForm(FormRevMixin, ModelForm):
|
2020-04-28 09:59:13 +00:00
|
|
|
"""Form used to create and edit comments of a ticket."""
|
2020-04-23 00:42:18 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = CommentTicket
|
|
|
|
fields = ["comment"]
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2020-04-23 01:21:11 +00:00
|
|
|
request = kwargs.pop("request", None)
|
2020-04-23 00:42:18 +00:00
|
|
|
prefix = kwargs.pop("prefix", self.Meta.model.__name__)
|
|
|
|
super(CommentTicketForm, self).__init__(*args, prefix=prefix, **kwargs)
|
|
|
|
self.fields["comment"].label = _("comment")
|
2020-04-23 01:21:11 +00:00
|
|
|
self.instance.request = request
|
2020-04-23 00:42:18 +00:00
|
|
|
|