annotate gpp/templates/weblinks/link_detail.html @ 264:91c0902de04d

Fixing #115: time zone picker javascript doesn't work on IE8. Apparently IE doesn't like array.indexOf(), but jQuery saves the day with a utility function that provides the same functionality.
author Brian Neal <bgneal@gmail.com>
date Thu, 23 Sep 2010 01:16:26 +0000
parents c0d0779b266f
children
rev   line source
bgneal@20 1 {% extends 'weblinks/base.html' %}
bgneal@20 2 {% block title %}Web Links: {{ link.title }}{% endblock %}
bgneal@20 3 {% block weblinks_content %}
bgneal@20 4 <h3>Link Details: {{ link.title }}</h3>
bgneal@20 5 <dl>
bgneal@20 6 {% include 'weblinks/link.html' %}
bgneal@20 7 </dl>
bgneal@20 8 {% endblock %}