diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2012-11-10 16:29:18 +0100 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2012-11-10 16:29:18 +0100 |
| commit | 0ae7f695448d5384f9fc6037e7acc7177fd55f55 (patch) | |
| tree | 2fb42301ef0df503d4c48632025a522d5243a0bb /templates | |
| parent | 305aa87825be13ba329fda96bd175b3dff0914bb (diff) | |
| download | famille-flask-0ae7f695448d5384f9fc6037e7acc7177fd55f55.tar.gz | |
Fix locales and minor encoding issue
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/news/list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/news/list.html b/templates/news/list.html index 2f273e1..99d1571 100644 --- a/templates/news/list.html +++ b/templates/news/list.html @@ -11,7 +11,7 @@ {% for user in users %} <tr> <td><a href="{{url_for('view_user', user_id=user.id)}}">{{user.user_name}}</a></td> - <td>{{user.last_seen|format_date}}</td> + <td>{{user.last_seen|format_date('%a %d %b à %Hh%M')}}</td> </tr> {% endfor %} </table> |
