view gpp/templates/gcalendar/google_sync.html @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +0000
parents 6a5549c2efb5
children 9a4bffdf37c3
line wrap: on
line source
{% extends 'admin/base_site.html' %}
{% block title %}Sync Events w/Google Calendar{% endblock %}
{% block breadcrumbs %}
<div class="breadcrumbs">
   <a href="../../../">Home</a> &rsaquo;
   <a href="../../">Gcalendar</a> &rsaquo; 
   <a href="../">Events</a> &rsaquo; Google Sync
</div>
{% endblock %}
{% block content %}
<h1>Synchronize Approved Events with Google Calendar</h1>
{% if err_msg %}
<ul class="errorlist">
   <li>{{ err_msg }}</li>
</ul>
{% endif %}
{% if events %}
<p>To synchronize the following approved events with the Google calendar, please enter the password for the
account and click submit.</p>
<ol>
{% for event in events %}
{% if not event.on_calendar %}
<li><a href="../../{{ event.id }}">{{ event.start_date|date:"M d, Y" }} - {{ event.what }}</a>
&bull; Submitted by {{ event.user.username }} &bull; <strong>{{ event.get_status_display }}</strong></li>
{% endif %}
{% endfor %}
</ol>
<form action="." method="POST">{% csrf_token %}
   {{ form.as_p }}
   <p><input type="submit" name="submit" value="Submit" /></p>
</form>
{% else %}
<p>No events to synchronize at this time.</p>
{% endif %}
{% endblock %}