Skip to content
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.

Commit

Permalink
[fix bug 922198] Display local timestamp for event in profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanchowdhury committed Oct 22, 2013
1 parent 7aa36b3 commit ad3a9fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions remo/profiles/templates/profiles_view.html
Expand Up @@ -119,7 +119,7 @@ <h5 class="profile-heading">Upcoming Events</h5>
{{ event.name }}
</a>
</td>
<td>{{ event.start|strftime("%d %b %Y") }}</td>
<td>{{ event.local_start|strftime("%d %b %Y") }}</td>
<td>{{ get_attendee_role_event(pageuser, event) }}</td>
</tr>
{% endfor %}
Expand Down Expand Up @@ -147,7 +147,7 @@ <h5 class="profile-heading">Past Events</h5>
{{ event.name }}
</a>
</td>
<td>{{ event.start|strftime("%d %b %Y") }}</td>
<td>{{ event.local_start|strftime("%d %b %Y") }}</td>
<td>{{ get_attendee_role_event(pageuser, event) }}</td>
</tr>
{% endfor %}
Expand Down

0 comments on commit ad3a9fd

Please sign in to comment.