Files @ cffc81b5d884
Branch filter:

Location: website/www/conservancy/templates/blog/entry_detail.html

bkuhn
Prepare for Supporters beyond 750.

After the next import, we'll have more than 750 supporters. This change
not only handles that fact, but adds sufficient Javascript and Django
templating to handle the case if the Supporter count for any reason
drops below 750 again.
{% extends "base_blog.html" %}

{% block subtitle %}{{ object.headline|striptags }} - Conservancy Blog - {% endblock %}

{% block content %}

<p class="date">{{ object.pub_date|date:"F j, Y" }} by {{ object.author.formal_name }}</p>
<h2>{{ object.headline|safe }}</h2>
{{ object.body|safe }}
<p><i>Posted by <strong>{{ object.author.formal_name }}</strong> on {{object.pub_date|date:"F j, Y" }}.  Please email any comments on this entry to <a href="mailto:info@sfconservancy.org">info@sfconservancy.org</a>.</i></p>

{% if object.tags.all %}<p class="blog-tags">Tags: {% for tag in object.tags.all %}<a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</p>{% endif %}

<p><span class="continued"><a href="/blog/">Other Conservancy Blog entries&hellip;</a></span></p>

{% endblock %}