From f322fba75c8ca3dd4296a11bda688d63b2a547d2 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 16 Mar 2015 07:36:11 +0100 Subject: Added a new Jinja filter to get month name from number. --- pyaggr3g470r/templates/history.html | 2 +- runserver.py | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pyaggr3g470r/templates/history.html b/pyaggr3g470r/templates/history.html index 2d64da98..3b9412a3 100644 --- a/pyaggr3g470r/templates/history.html +++ b/pyaggr3g470r/templates/history.html @@ -7,7 +7,7 @@ {% if year == None %}
  • {{ article }} : {{ articles_counter[article] }} articles
  • {% elif month == None %} -
  • {{ article }} : {{ articles_counter[article] }} articles
  • +
  • {{ article | month_name }} : {{ articles_counter[article] }} articles
  • {% else %} {% for article in articles %}
  • {{ article.date }} - {{ article.title | safe }}
  • diff --git a/runserver.py b/runserver.py index 2ced409f..156ae320 100755 --- a/runserver.py +++ b/runserver.py @@ -18,7 +18,7 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . - +import calendar from bootstrap import conf, application, db, populate_g from flask.ext.babel import Babel from flask.ext.babel import format_datetime @@ -38,8 +38,14 @@ def allowed_file(filename): babel = Babel(application) +# Jinja filters application.jinja_env.filters['datetime'] = format_datetime +#@register.filter +def month_name(month_number): + return calendar.month_name[month_number] +application.jinja_env.filters['month_name'] = month_name + # Views from flask.ext.restful import Api from flask import g -- cgit