Skip to content

Commit

Permalink
Fixed problem with timezones on some systems
Browse files Browse the repository at this point in the history
  • Loading branch information
lkiesow committed Nov 20, 2013
1 parent d381dc6 commit 2448586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/basic-lists/serieslist.html
Expand Up @@ -7,7 +7,7 @@ <h2>Lecture Series</h2>
<tr>
<td style="border-left: 8px solid #{{ s.color}}">{{ (s['contributor'] or [''])[0] }}</td>
<td>{{ ', '.join(s['creator'] or ['']) }}</td>
<td>{{ s['date'].strftime('%a, %d %b %Y %H:%M:%S %Z') }}</td>
<td>{{ s['date'].strftime('%a, %d %b %Y %H:%M:%S') if s.get('date') else '' }}</td>
<td><a href="{{ url_for('series', id=s.id) }}"> {{ s.title }}</a></td>
</tr>
{% else %}
Expand Down

0 comments on commit 2448586

Please sign in to comment.