From f81d231465e7a3d7b4f434f266a5a733fa45ec9b Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sun, 11 Oct 2015 01:41:20 +0200 Subject: assigning categories to feeds and articles --- src/web/templates/edit_feed.html | 8 ++++++++ src/web/templates/feed.html | 3 +++ 2 files changed, 11 insertions(+) (limited to 'src/web/templates') diff --git a/src/web/templates/edit_feed.html b/src/web/templates/edit_feed.html index 68da0d48..ab624f15 100644 --- a/src/web/templates/edit_feed.html +++ b/src/web/templates/edit_feed.html @@ -29,6 +29,14 @@ {% for error in form.site_link.errors %} {{ error }}
{% endfor %} +
+ +
+ {{ form.category_id(class_="form-control", placeholder=_('Optional')) }} +
+ {% for error in form.category_id.errors %} {{ error }}
{% endfor %} +
+
diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html index 6705015a..7434a9ac 100644 --- a/src/web/templates/feed.html +++ b/src/web/templates/feed.html @@ -10,6 +10,9 @@

{{ _('This feed contains') }} {{ feed.articles.all()|count }} {{ _('articles') }}.
+ {% if category %} + {{ _('This feed is part of category %(category_name)s', category_name=category.name) }}
+ {% endif %} {{ _('Address of the feed') }}: {{ feed.link }}
{% if feed.site_link != "" %} {{ _('Address of the site') }}: {{ feed.site_link }}
-- cgit From 5b7db9398abaacea241d9fcce7885457c562d7fa Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sun, 11 Oct 2015 12:18:07 +0200 Subject: a bit of cleaning, putting code where it belongs --- src/web/templates/article.html | 2 +- src/web/templates/duplicates.html | 4 ++-- src/web/templates/feed_list.html | 2 +- src/web/templates/history.html | 8 ++++---- src/web/templates/inactives.html | 2 +- src/web/templates/layout.html | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) (limited to 'src/web/templates') diff --git a/src/web/templates/article.html b/src/web/templates/article.html index b1f950b4..6ab9d0bb 100644 --- a/src/web/templates/article.html +++ b/src/web/templates/article.html @@ -4,7 +4,7 @@

{{ article.title|safe }}

{{ _('from') }} {{ article.source.title }}

- + {% if article.like %} {% else %} diff --git a/src/web/templates/duplicates.html b/src/web/templates/duplicates.html index 32fbdf9a..d944a1a5 100644 --- a/src/web/templates/duplicates.html +++ b/src/web/templates/duplicates.html @@ -19,8 +19,8 @@ {% for pair in duplicates %} {{ loop.index }} -  {{ pair[0].title }} ({{ pair[0].retrieved_date }}) -  {{ pair[1].title }} ({{ pair[1].retrieved_date }}) +  {{ pair[0].title }} ({{ pair[0].retrieved_date }}) +  {{ pair[1].title }} ({{ pair[1].retrieved_date }}) {% endfor %} diff --git a/src/web/templates/feed_list.html b/src/web/templates/feed_list.html index c5cadab0..27815250 100644 --- a/src/web/templates/feed_list.html +++ b/src/web/templates/feed_list.html @@ -36,7 +36,7 @@ - + diff --git a/src/web/templates/history.html b/src/web/templates/history.html index 499fe50b..caa0b057 100644 --- a/src/web/templates/history.html +++ b/src/web/templates/history.html @@ -3,18 +3,18 @@

{{ _('History') }}

{% if month != None %} -

{{ year }}

+

{{ year }}

{{ month | month_name }}

{% elif year != None %} -

 {{ _('all years') }}

+

 {{ _('all years') }}

{{ year }}

{% endif %} -- cgit From 5f66e6465d3822b150898de2a7fb8df39ed7fdc6 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sun, 11 Oct 2015 23:34:33 +0200 Subject: removing misplaced stuffs from views, more controllers use --- src/web/templates/admin/dashboard.html | 18 ++++++++++-------- src/web/templates/home.html | 2 +- src/web/templates/layout.html | 6 +++--- 3 files changed, 14 insertions(+), 12 deletions(-) (limited to 'src/web/templates') diff --git a/src/web/templates/admin/dashboard.html b/src/web/templates/admin/dashboard.html index 25bd3883..2436c955 100644 --- a/src/web/templates/admin/dashboard.html +++ b/src/web/templates/admin/dashboard.html @@ -20,29 +20,31 @@ {{ loop.index }} {% if user.id == current_user.id %} - {{ user.nickname }} (It's you!) + {{ user.nickname }} (It's you!) {% else %} - {{ user.nickname }} + {{ user.nickname }} {% endif %} {{ user.email }} {{ user.last_seen }} - - + + {% if user.id != current_user.id %} + {% if user.activation_key == "" %} - + {% else %} - + {% endif %} - + + {% endif %} {% endfor %} -{{ _('Add a new user') }} +{{ _('Add a new user') }}

{{ _('Send notification messages') }}

{{ form.hidden_tag() }} diff --git a/src/web/templates/home.html b/src/web/templates/home.html index 86d96e94..6b136870 100644 --- a/src/web/templates/home.html +++ b/src/web/templates/home.html @@ -3,7 +3,7 @@ {% if feeds|count == 0 %}

{{ _("You don't have any feeds.") }}

-

{{ _('Add some') }}, {{ _('or') }} {{ _('upload an OPML file.') }}

+

{{ _('Add some') }}, {{ _('or') }} {{ _('upload an OPML file.') }}

{% else %}
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index cf2498e2..eb213ca5 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -81,12 +81,12 @@
 

{{ _('OPML import/export') }}

-- cgit From 2ce813d67ee32a100c7c3643717856f1718cf81c Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Mon, 12 Oct 2015 17:41:39 +0200 Subject: updating translations --- src/web/templates/feed.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/templates') diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html index 7434a9ac..096ee794 100644 --- a/src/web/templates/feed.html +++ b/src/web/templates/feed.html @@ -37,7 +37,7 @@ {% if feed.articles.all()|count != 0 %} {{ _('The last article was posted') }} {{ elapsed.days }} {{ _('day(s) ago.') }}
- {{ _('Daily average') }}: {{ average }}, {{ _('between the') }} {{ first_post_date | datetime }} {{ _('and the') }} {{ end_post_date | datetime }}. + {{ _('Daily average') }}: {{ average }}, {{ _('between the') }} {{ first_post_date | datetime }} {{ _('and the') }} {{ end_post_date | datetime }}. {% endif %}

-- cgit From 7cbbcb59f4c434fbd7e74e85c90e98fadd189b65 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Mon, 12 Oct 2015 17:48:41 +0200 Subject: adding, improving UI to manage categories --- src/web/templates/feed_list.html | 2 +- src/web/templates/feeds.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/web/templates') diff --git a/src/web/templates/feed_list.html b/src/web/templates/feed_list.html index 27815250..51561dee 100644 --- a/src/web/templates/feed_list.html +++ b/src/web/templates/feed_list.html @@ -1,4 +1,4 @@ -{% if feeds.all()| count == 0 %} +{% if feeds| count == 0 %}

{{_("No feed")}}

{% else %}
diff --git a/src/web/templates/feeds.html b/src/web/templates/feeds.html index 9ba16359..074957f7 100644 --- a/src/web/templates/feeds.html +++ b/src/web/templates/feeds.html @@ -1,7 +1,7 @@ {% extends "layout.html" %} {% block content %}
-

{{ _('You are subscribed to') }} {{ feeds.count() }} {{ _('feeds') }} · {{ _('Add a') }} {{ _('feed') }}

+

{{ _('You are subscribed to') }} {{ feeds|count }} {{ _('feeds') }} · {{ _('Add a') }} {{ _('feed') }}

{% include "feed_list.html" %}
{% endblock %} -- cgit From 2c0e17cb977a1e8782799b337df8b1583d019906 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Mon, 12 Oct 2015 22:36:01 +0200 Subject: bootstraping react --- src/web/templates/categories.html | 36 ++++++++ src/web/templates/edit_category.html | 23 +++++ src/web/templates/emails/new_account.txt | 4 +- src/web/templates/feed_list.html | 2 +- src/web/templates/feeds.html | 2 +- src/web/templates/home2.html | 8 ++ src/web/templates/layout.html | 53 ++++------- src/web/templates/layout.html.orig | 149 +++++++++++++++++++++++++++++++ src/web/templates/opml.xml | 4 +- 9 files changed, 240 insertions(+), 41 deletions(-) create mode 100644 src/web/templates/categories.html create mode 100644 src/web/templates/edit_category.html create mode 100644 src/web/templates/home2.html create mode 100644 src/web/templates/layout.html.orig (limited to 'src/web/templates') diff --git a/src/web/templates/categories.html b/src/web/templates/categories.html new file mode 100644 index 00000000..a61cc4b2 --- /dev/null +++ b/src/web/templates/categories.html @@ -0,0 +1,36 @@ +{% extends "layout.html" %} +{% block content %} +
+

{{ _("You have %(categories)d categories · Add a %(start_link)scategory%(end_link)s", categories=categories|count, start_link=("" % url_for("category.form"))|safe, end_link=""|safe) }}

+ {% if categories|count == 0 %} +

{{_("No category")}}

+ {% else %} +
+ + + + + + + + + + + + {% for category in categories|sort(attribute="name") %} + + + + + + + + {% endfor %} + +
#{{ _('Name') }}{{ _('Feeds') }}{{ _('Articles') }}{{ _('Actions') }}
{{ loop.index }}{{ category.name }}{{ feeds_count.get(category.id, 0) }}( {{ unread_article_count.get(category.id, 0) }} ) {{ article_count.get(category.id, 0) }} + + +
+
+ {% endif %} +{% endblock %} diff --git a/src/web/templates/edit_category.html b/src/web/templates/edit_category.html new file mode 100644 index 00000000..93c952d6 --- /dev/null +++ b/src/web/templates/edit_category.html @@ -0,0 +1,23 @@ +{% extends "layout.html" %} +{% block content %} +
+
+

{{ action }}

+ + {{ form.hidden_tag() }} +
+ +
+ {{ form.name(class_="form-control", size="100%") }} +
+ {% for error in form.name.errors %} {{ error }}
{% endfor %} +
+
+
+ {{ form.submit(class_="btn btn-default") }} +
+
+ +
+
+{% endblock %} diff --git a/src/web/templates/emails/new_account.txt b/src/web/templates/emails/new_account.txt index 6397f502..6335a34e 100644 --- a/src/web/templates/emails/new_account.txt +++ b/src/web/templates/emails/new_account.txt @@ -1,11 +1,11 @@ Hello {{ user.firstname }} {{ user.lastname }}, An account has been created for you. -You can now access the pyAggr3g470r platform ({{ platform_url }}). +You can now access the JARR platform ({{ platform_url }}). Your login is your e-mail address and your password is: --- {{ password }} --- -Regards, \ No newline at end of file +Regards, diff --git a/src/web/templates/feed_list.html b/src/web/templates/feed_list.html index 51561dee..114ae960 100644 --- a/src/web/templates/feed_list.html +++ b/src/web/templates/feed_list.html @@ -1,4 +1,4 @@ -{% if feeds| count == 0 %} +{% if feeds.count() == 0 %}

{{_("No feed")}}

{% else %}
diff --git a/src/web/templates/feeds.html b/src/web/templates/feeds.html index 074957f7..9523d43f 100644 --- a/src/web/templates/feeds.html +++ b/src/web/templates/feeds.html @@ -1,7 +1,7 @@ {% extends "layout.html" %} {% block content %}
-

{{ _('You are subscribed to') }} {{ feeds|count }} {{ _('feeds') }} · {{ _('Add a') }} {{ _('feed') }}

+

{{ _('You are subscribed to %(feed_count)d feeds.', feed_count=feeds.count()) }} · {{ _('Add a') }} {{ _('feed') }}

{% include "feed_list.html" %}
{% endblock %} diff --git a/src/web/templates/home2.html b/src/web/templates/home2.html new file mode 100644 index 00000000..54413b35 --- /dev/null +++ b/src/web/templates/home2.html @@ -0,0 +1,8 @@ +{% extends "layout.html" %} +{% block content %} +
+ + + + +{% endblock %} diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index eb213ca5..db5b6589 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -7,12 +7,12 @@ JARR{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %} - + - + - - + + {% endblock %} @@ -125,42 +125,25 @@
- {% block messages %} - {% with messages = get_flashed_messages(with_categories=true) %} - {% if messages %} - {% for category, message in messages %} -
- - {{ message }} -
- {% endfor %} - {% endif %} - {% endwith %} - {% endblock %} + {% block messages %} + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for category, message in messages %} +
+ + {{ message }} +
+ {% endfor %} + {% endif %} + {% endwith %} + {% endblock %}
{% block content %}{% endblock %} - - - - - + + diff --git a/src/web/templates/layout.html.orig b/src/web/templates/layout.html.orig new file mode 100644 index 00000000..1abb0b68 --- /dev/null +++ b/src/web/templates/layout.html.orig @@ -0,0 +1,149 @@ + + + + {% block head %} + + + + + JARR{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %} + + + + + + + {% endblock %} + + + +
+ +
+ {% block messages %} + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for category, message in messages %} +
+ + {{ message }} +
+ {% endfor %} + {% endif %} + {% endwith %} + {% endblock %} +
+ + {% block content %}{% endblock %} + + + + + + + + diff --git a/src/web/templates/opml.xml b/src/web/templates/opml.xml index 96fe66f5..051d3af6 100644 --- a/src/web/templates/opml.xml +++ b/src/web/templates/opml.xml @@ -1,5 +1,5 @@ - + Feeds of {{ user.nickname }} @@ -11,4 +11,4 @@ {% for feed in user.feeds %} {% endfor %} - \ No newline at end of file + -- cgit From 41aea41aaff0886fd6c211f03db2b54863a97165 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Thu, 21 Jan 2016 13:48:06 +0100 Subject: filters are working ! --- src/web/templates/home2.html | 2 -- src/web/templates/layout.html | 5 ----- 2 files changed, 7 deletions(-) (limited to 'src/web/templates') diff --git a/src/web/templates/home2.html b/src/web/templates/home2.html index 54413b35..3e9d4a6f 100644 --- a/src/web/templates/home2.html +++ b/src/web/templates/home2.html @@ -1,8 +1,6 @@ {% extends "layout.html" %} {% block content %}
- - {% endblock %} diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index db5b6589..0b2f371d 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -140,10 +140,5 @@
{% block content %}{% endblock %} - - - - - -- cgit From c542f58b99e0bd625f52e1ac9c3d2ad7d9ee4bd5 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Fri, 22 Jan 2016 17:26:56 +0100 Subject: adding basic bootstrap --- src/web/templates/layout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/templates') diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index 0b2f371d..02eb3473 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -1,5 +1,5 @@ - + {% block head %} -- cgit From 228006ea5de5a9f9a60a4f5176620428e551c55b Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Tue, 26 Jan 2016 18:22:39 +0100 Subject: ressucitating old js --- src/web/templates/layout.html | 50 +++++++++++++++++++------------------------ 1 file changed, 22 insertions(+), 28 deletions(-) (limited to 'src/web/templates') diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index 02eb3473..4b9f1a4c 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -55,11 +55,6 @@ - {% if page_to_render == "favorites" %} -
  • {{ _('Home') }}
  • - {% else %} -
  • {{ _('Favorites') }}
  • - {% endif %} {% if conf.CRAWLING_METHOD == "classic" and (not conf.ON_HEROKU or g.user.is_admin()) %}
  • {{ _('Fetch') }}
  • {% endif %} @@ -92,29 +87,6 @@
  • {{ _('Logout') }}
  • - - {% else %}
  •  {{ _('About') }}
  • {% endif %} @@ -140,5 +112,27 @@
    {% block content %}{% endblock %} + + + + + + + + -- cgit From 370d51244922ba6634831a406e268a6537053a3d Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Wed, 27 Jan 2016 12:36:35 +0100 Subject: bumping react and removing react-bootstrap listgroup which are not working wit last react version --- src/web/templates/home2.html | 103 ++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 98 insertions(+), 5 deletions(-) (limited to 'src/web/templates') diff --git a/src/web/templates/home2.html b/src/web/templates/home2.html index 3e9d4a6f..673d9041 100644 --- a/src/web/templates/home2.html +++ b/src/web/templates/home2.html @@ -1,6 +1,99 @@ -{% extends "layout.html" %} -{% block content %} -
    - + + + + {% block head %} + + + + + JARR{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %} + + + + + + {% endblock %} + + + +
    + + + -- cgit From c3d6c25e52e37d772286f293f94a5dd7e1059529 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Wed, 27 Jan 2016 17:14:23 +0100 Subject: redoing UI and finishing up sidebar --- src/web/templates/home2.html | 1 + src/web/templates/layout.html | 1 - src/web/templates/layout.html.orig | 149 ------------------------------------- 3 files changed, 1 insertion(+), 150 deletions(-) delete mode 100644 src/web/templates/layout.html.orig (limited to 'src/web/templates') diff --git a/src/web/templates/home2.html b/src/web/templates/home2.html index 673d9041..36dd8f19 100644 --- a/src/web/templates/home2.html +++ b/src/web/templates/home2.html @@ -12,6 +12,7 @@ + {% endblock %} diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index 4b9f1a4c..ac943d54 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -12,7 +12,6 @@ - {% endblock %} diff --git a/src/web/templates/layout.html.orig b/src/web/templates/layout.html.orig deleted file mode 100644 index 1abb0b68..00000000 --- a/src/web/templates/layout.html.orig +++ /dev/null @@ -1,149 +0,0 @@ - - - - {% block head %} - - - - - JARR{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %} - - - - - - - {% endblock %} - - - -
    - -
    - {% block messages %} - {% with messages = get_flashed_messages(with_categories=true) %} - {% if messages %} - {% for category, message in messages %} -
    - - {{ message }} -
    - {% endfor %} - {% endif %} - {% endwith %} - {% endblock %} -
    - - {% block content %}{% endblock %} - - - - - - - - -- cgit From 9ca6a6989b0c87401f1a3903077723cd9a648a79 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sun, 31 Jan 2016 02:24:10 +0100 Subject: redoing navbar in react --- src/web/templates/home2.html | 82 ++------------------------------------------ 1 file changed, 2 insertions(+), 80 deletions(-) (limited to 'src/web/templates') diff --git a/src/web/templates/home2.html b/src/web/templates/home2.html index 36dd8f19..4389ae6f 100644 --- a/src/web/templates/home2.html +++ b/src/web/templates/home2.html @@ -16,85 +16,7 @@ {% endblock %} - -
    - +
    + -- cgit From c9fe6a680f0c2547157db0825dde93471704c609 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sun, 31 Jan 2016 03:11:42 +0100 Subject: decommissionning old home --- src/web/templates/home.html | 153 +++++++------------------------------------ src/web/templates/home2.html | 22 ------- 2 files changed, 22 insertions(+), 153 deletions(-) delete mode 100644 src/web/templates/home2.html (limited to 'src/web/templates') diff --git a/src/web/templates/home.html b/src/web/templates/home.html index 6b136870..4389ae6f 100644 --- a/src/web/templates/home.html +++ b/src/web/templates/home.html @@ -1,131 +1,22 @@ -{% extends "layout.html" %} -{% block content %} -{% if feeds|count == 0 %} -
    -

    {{ _("You don't have any feeds.") }}

    -

    {{ _('Add some') }}, {{ _('or') }} {{ _('upload an OPML file.') }}

    -
    -{% else %} -
    -
    - - - {% with messages = get_flashed_messages(with_categories=true) %} - {% if messages %} -
    - {% block messages %} - {{ super() }} - {% endblock %} -
    - {% endif %} - {% endwith %} -
    - - {% if articles | count != 0%} -
    - - - - - - - - - - - {% for article in articles %} - - - - - - - {% endfor %} - -
    {{ _('Feed') }}{{ _('Article') }}{{ _('Date') }}
    - - {% if article.like %} - - {% else %} - - {% endif %} - {% if article.readed %} - - {% else %} - - {% if filter_ == 'all' %}{% endif %} - {% endif %} - - - {% if article.source.icon_url %} - - {% else %} - - {% endif %} - - {{ article.title|safe }} - {{ article.date|datetime }}
    -
    - {% endif %} -
    -
    -
    - -{% endif %} -{% endblock %} + + + + {% block head %} + + + + + JARR{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %} + + + + + + + {% endblock %} + + +
    + + + diff --git a/src/web/templates/home2.html b/src/web/templates/home2.html deleted file mode 100644 index 4389ae6f..00000000 --- a/src/web/templates/home2.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - {% block head %} - - - - - JARR{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %} - - - - - - - {% endblock %} - - -
    - - - -- cgit From eb74eca67026a62dac5d0f8cf92111fad6c73648 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sun, 31 Jan 2016 16:59:04 +0100 Subject: fixing breadcrum height --- src/web/templates/home.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/web/templates') diff --git a/src/web/templates/home.html b/src/web/templates/home.html index 4389ae6f..c2966be7 100644 --- a/src/web/templates/home.html +++ b/src/web/templates/home.html @@ -8,11 +8,11 @@ JARR{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %} - - + + {% endblock %} -- cgit From 5949bd6787f2a7fa910dea6036df0315e119b457 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sun, 31 Jan 2016 18:02:52 +0100 Subject: modal from nav --- src/web/templates/layout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/templates') diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index ac943d54..feb370e3 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -15,7 +15,7 @@ {% endblock %} -