From 24c994f2a5dea13d1a673ab09def0330e9245a3b Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Fri, 21 Feb 2020 21:33:49 +0100 Subject: [PATCH 1/3] Fix y-overflow on accordion showing during transition --- templates/member/profile_detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/member/profile_detail.html b/templates/member/profile_detail.html index f68dc278..655f9893 100644 --- a/templates/member/profile_detail.html +++ b/templates/member/profile_detail.html @@ -54,7 +54,7 @@ {% trans "View my memberships" %} -
+
{% render_table club_list %}
@@ -67,7 +67,7 @@ Historique des transactions -
+
{% render_table history_list %}
From 3597e79dc10a57078f2cd0807f939f00a7a7d635 Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Fri, 21 Feb 2020 22:40:58 +0100 Subject: [PATCH 2/3] Dynamic tabs on conso view --- apps/note/urls.py | 1 - apps/note/views.py | 22 +++---- templates/note/conso_form.html | 114 ++++++++++++++++++++++++--------- 3 files changed, 91 insertions(+), 46 deletions(-) diff --git a/apps/note/urls.py b/apps/note/urls.py index e1cc5216..fea911f6 100644 --- a/apps/note/urls.py +++ b/apps/note/urls.py @@ -12,7 +12,6 @@ urlpatterns = [ path('buttons/create/', views.TransactionTemplateCreateView.as_view(), name='template_create'), path('buttons/update//', views.TransactionTemplateUpdateView.as_view(), name='template_update'), path('buttons/', views.TransactionTemplateListView.as_view(), name='template_list'), - path('consos//', views.ConsoView.as_view(), name='consos'), path('consos/', views.ConsoView.as_view(), name='consos'), # API for the note autocompleter diff --git a/apps/note/views.py b/apps/note/views.py index b012ad8b..61012f34 100644 --- a/apps/note/views.py +++ b/apps/note/views.py @@ -8,7 +8,7 @@ from django.urls import reverse from django.utils.translation import gettext_lazy as _ from django.views.generic import CreateView, ListView, UpdateView -from .models import Transaction, TransactionCategory, TransactionTemplate, Alias +from .models import Transaction, TransactionTemplate, Alias from .forms import TransactionForm, TransactionTemplateForm, ConsoForm @@ -135,19 +135,13 @@ class ConsoView(LoginRequiredMixin, CreateView): Add some context variables in template such as page title """ context = super().get_context_data(**kwargs) - context['template_types'] = TransactionCategory.objects.all() - - if 'template_type' not in self.kwargs.keys(): - return context - - template_type = TransactionCategory.objects.filter( - name=self.kwargs.get('template_type')).get() - context['buttons'] = TransactionTemplate.objects.filter( - template_type=template_type) - context['title'] = template_type - + context['transaction_templates'] = TransactionTemplate.objects.all() \ + .order_by('template_type') + context['title'] = _("Consommations") return context def get_success_url(self): - return reverse('note:consos', - args=(self.kwargs.get('template_type'), )) + """ + When clicking a button, reload the same page + """ + return reverse('note:consos') diff --git a/templates/note/conso_form.html b/templates/note/conso_form.html index e2106f17..89a8f8e4 100644 --- a/templates/note/conso_form.html +++ b/templates/note/conso_form.html @@ -2,40 +2,92 @@ {% load i18n static pretty_money %} +{# Remove page title #} +{% block contenttitle %}{% endblock %} + {% block content %} -
- {% for type in template_types %} - - {% endfor %} -
-
{% csrf_token %} - {% if form.non_field_errors %} -

- {% for error in form.non_field_errors %} - {{ error }} + {# Regroup buttons under categories #} + {% regroup transaction_templates by template_type as template_types %} + + + {% csrf_token %} + +

+
+ {% if form.non_field_errors %} +

+ {% for error in form.non_field_errors %} + {{ error }} + {% endfor %} +

+ {% endif %} + {% for field in form %} +
+ {{ field.errors }} +
+ {{ field.label_tag }} + {% if field.is_readonly %} +
{{ field.contents }}
+ {% else %} + {{ field }} + {% endif %} + {% if field.field.help_text %} +
{{ field.field.help_text|safe }}
+ {% endif %} +
+
{% endfor %} -

- {% endif %} -
- {% for field in form %} -
- {{ field.errors }} -
- {{ field.label_tag }} - {% if field.is_readonly %} -
{{ field.contents }}
- {% else %} - {{ field }} - {% endif %} - {% if field.field.help_text %} -
{{ field.field.help_text|safe }}
- {% endif %} +
+ +
+
+ {# Tabs for button categories #} +
+ +
+ + {# Tabs content #} +
+
+ {% for template_type in template_types %} +
+ {% for button in template_type.list %} + + {% endfor %} +
+ {% endfor %} +
- {% endfor %} - {% for button in buttons %} - - {% endfor %} -
+
+
+ + {% endblock %} From a39bbea2d406b458a540336bd7d52f9df89ac73c Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Sat, 22 Feb 2020 10:17:24 +0100 Subject: [PATCH 3/3] Add shadow and fix jquery hack --- templates/note/conso_form.html | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/templates/note/conso_form.html b/templates/note/conso_form.html index 89a8f8e4..b121ad54 100644 --- a/templates/note/conso_form.html +++ b/templates/note/conso_form.html @@ -13,7 +13,7 @@ {% csrf_token %}
-
+
{% if form.non_field_errors %}

{% for error in form.non_field_errors %} @@ -40,7 +40,7 @@

-
+
{# Tabs for button categories #}
+{% endblock %} +{% block extrajavascript %}