diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-03 11:10:15 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-03 11:10:15 +0200 |
commit | 6c3152d3dae65b79203986179e20f371e6d01781 (patch) | |
tree | aa3b4e7f522b6da02995c927480280a182f32de4 /pyaggr3g470r/templates/opml.xml | |
parent | Take into account the client time zone. (diff) | |
download | newspipe-6c3152d3dae65b79203986179e20f371e6d01781.tar.gz newspipe-6c3152d3dae65b79203986179e20f371e6d01781.tar.bz2 newspipe-6c3152d3dae65b79203986179e20f371e6d01781.zip |
Using datetime filter in all templates.
Diffstat (limited to 'pyaggr3g470r/templates/opml.xml')
-rw-r--r-- | pyaggr3g470r/templates/opml.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/opml.xml b/pyaggr3g470r/templates/opml.xml index 8918bb88..07d2b3d9 100644 --- a/pyaggr3g470r/templates/opml.xml +++ b/pyaggr3g470r/templates/opml.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="utf-8" ?> -<!-- OPML generated by pyAggr3g470r on {{ now.strftime('%A, %d %B %Y') }} --> +<!-- OPML generated by pyAggr3g470r on {{ now | datetime }} --> <opml version="1.1"> <head> <title>Feeds of {{ user.firstname }}</title> - <dateCreated>{{ now.strftime('%A, %d %B %Y') }}</dateCreated> - <dateModified>{{ now.strftime('%A, %d %B %Y') }}</dateModified> + <dateCreated>{{ now | datetime }}</dateCreated> + <dateModified>{{ now | datetime }}</dateModified> <ownerName>{{ user.firstname }} {{ user.lastname }}</ownerName> <ownerEmail>{{ user.email }}</ownerEmail> </head> |