8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-20 09:32:29 +00:00

Dummy bouton, order des date, et affichage dans l'admin

This commit is contained in:
Grizzly 2019-07-11 08:27:58 +00:00 committed by Gabriel Detraz
parent 609904c279
commit 13afc5aaeb
4 changed files with 15 additions and 2 deletions

View file

@ -33,3 +33,6 @@ class Ticket(models.Model):
class Meta:
verbose_name = _("Ticket")
verbose_name_plural = _("Tickets")
def __str__(self):
return "Ticket de {} date: {}".format(self.user.surname,self.date)

View file

@ -46,6 +46,16 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<p><b>{% trans "Title:" %}</b> {{ticket.title}}</p>
<p><b>{% trans "Description" %}</b> {{ ticket.description }}</p>
<div class="text-right">
{% if not ticket.solved %}
<a class="btn btn-success" role="button">
<i class="fa fa-check"></i>{% trans "Mark as Solved" %}
{% else %}
<a class="btn btn-warning" role="button">
<i class="fa fa-cross"></i>{% trans "Mark as Not Solved" %}
{% endif %}
</a>
</div>
</div>
</div>

View file

@ -38,6 +38,6 @@ def aff_ticket(request,ticketid):
def aff_tickets(request):
""" Vue d'affichage de tout les tickets """
tickets = Ticket.objects.all().order_by('date')
tickets = Ticket.objects.all().order_by('-date')
return render(request,'tickets/index.html',
{'tickets_list':tickets})

View file

@ -978,7 +978,7 @@ def profil(request, users, **_kwargs):
request.GET.get('order'),
SortTable.MACHINES_INDEX
)
tickets = Ticket.objects.filter(user=users).all().order_by('date')
tickets = Ticket.objects.filter(user=users).all().order_by('-date')
nb_tickets = tickets.count()
pagination_large_number = GeneralOption.get_cached_value(
'pagination_large_number'