Mercurial > public > sg101
diff gpp/templates/gcalendar/google_sync.html @ 1:dbd703f7d63a
Initial import of sg101 stuff from private repository.
author | gremmie |
---|---|
date | Mon, 06 Apr 2009 02:43:12 +0000 |
parents | |
children | 9fb8e804652b |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/gcalendar/google_sync.html Mon Apr 06 02:43:12 2009 +0000 @@ -0,0 +1,35 @@ +{% extends 'admin/base_site.html' %} +{% block title %}Sync Events w/Google Calendar{% endblock %} +{% block breadcrumbs %} +<div class="breadcrumbs"> + <a href="../../../">Home</a> › + <a href="../../">Gcalendar</a> › + <a href="../">Events</a> › Google Sync +</div> +{% endblock %} +{% block content %} +<h1>Synchronize Approved Events with Google Calendar</h1> +{% if errors %} +<ul class="errorlist"> + {{ errors|unordered_list }} +</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> +• Submitted by {{ event.user.username }} • <strong>{{ event.get_status_display }}</strong></li> +{% endif %} +{% endfor %} +</ol> +<form action="." method="POST"> + {{ 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 %}