comparison gpp/templates/gcalendar/google_sync.html @ 464:bba1782992eb

Fix links to events on the google sync page in GCalendar admin.
author Brian Neal <bgneal@gmail.com>
date Sat, 09 Jul 2011 02:12:32 +0000
parents 9a4bffdf37c3
children
comparison
equal deleted inserted replaced
463:452835f4429f 464:bba1782992eb
22 {% if events %} 22 {% if events %}
23 <p>The following pending events have been approved and are ready to be synchronized with the Google calendar.</p> 23 <p>The following pending events have been approved and are ready to be synchronized with the Google calendar.</p>
24 <ol> 24 <ol>
25 {% for event in events %} 25 {% for event in events %}
26 {% if not event.on_calendar %} 26 {% if not event.on_calendar %}
27 <li><a href="../../{{ event.id }}">{{ event.start_date|date:"M d, Y" }} - {{ event.what }}</a> 27 <li><a href="../{{ event.id }}">{{ event.start_date|date:"M d, Y" }} - {{ event.what }}</a>
28 &bull; Submitted by {{ event.user.username }} &bull; <strong>{{ event.get_status_display }}</strong></li> 28 &bull; Submitted by {{ event.user.username }} &bull; <strong>{{ event.get_status_display }}</strong></li>
29 {% endif %} 29 {% endif %}
30 {% endfor %} 30 {% endfor %}
31 </ol> 31 </ol>
32 32