annotate gpp/templates/gcalendar/thanks_edit.html @ 481:9f888dbe61ce

Fixing #230; add a scrollbar to the PM popup dialog if necessary. This wasn't as easy as I thought. Had to wrap the PM text in a div with its styling (max-height and overflow). If I then resized the dialog, I'd get two scrollbars. So for now, made the dialog non-resizable.
author Brian Neal <bgneal@gmail.com>
date Fri, 07 Oct 2011 02:11:33 +0000
parents daa2916f5b34
children
rev   line source
gremmie@1 1 {% extends 'base.html' %}
bgneal@310 2 {% load url from future %}
gremmie@1 3 {% block title %}Event Calendar Changes Received{% endblock %}
gremmie@1 4 {% block content %}
bgneal@310 5 <div class="breadcrumbs"><a href="{% url 'gcalendar-index' %}">Calendar</a> &raquo; Edit Events</div>
gremmie@1 6 <h2>Event Calendar Changes Received</h2>
gremmie@1 7 <p>We've received the changes to your calendar event. Your changes will be reviewed by the staff,
gremmie@1 8 and should appear on the calendar shortly. You may be contacted if we have any questions.</p>
bgneal@310 9 <p><a href="{% url 'gcalendar-index' %}">&laquo; Back to the Event Calendar</a></p>
gremmie@1 10 {% endblock %}