diff options
Diffstat (limited to 'djangoproject/templates/aggregator')
8 files changed, 14 insertions, 15 deletions
diff --git a/djangoproject/templates/aggregator/delete-confirm.html b/djangoproject/templates/aggregator/delete-confirm.html index c1e405b5..70bffd9d 100644 --- a/djangoproject/templates/aggregator/delete-confirm.html +++ b/djangoproject/templates/aggregator/delete-confirm.html @@ -16,4 +16,4 @@ {% csrf_token %} <p class="submit"><input class="cta" type="submit" value="{% translate "Yes, delete the feed." %}"></p> </form> -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/aggregator/denied.html b/djangoproject/templates/aggregator/denied.html index 442b3544..fa643f5d 100644 --- a/djangoproject/templates/aggregator/denied.html +++ b/djangoproject/templates/aggregator/denied.html @@ -5,4 +5,4 @@ <h1>{% translate "Community" %}</h1> <h2>{% translate "Sorry, you can't do that." %}</h2> -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/aggregator/ecosystem.html b/djangoproject/templates/aggregator/ecosystem.html index 9ea84255..6e64219c 100644 --- a/djangoproject/templates/aggregator/ecosystem.html +++ b/djangoproject/templates/aggregator/ecosystem.html @@ -1,5 +1,5 @@ {% extends "base_community.html" %} -{% load i18n hosts %} +{% load hosts i18n %} {% block content %} @@ -478,4 +478,4 @@ </li> </ul> -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/aggregator/edit-feed.html b/djangoproject/templates/aggregator/edit-feed.html index 715531d4..b31e93e0 100644 --- a/djangoproject/templates/aggregator/edit-feed.html +++ b/djangoproject/templates/aggregator/edit-feed.html @@ -27,4 +27,4 @@ {% endif %} </form> -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/aggregator/feeditem_list.html b/djangoproject/templates/aggregator/feeditem_list.html index e0a52075..971ac810 100644 --- a/djangoproject/templates/aggregator/feeditem_list.html +++ b/djangoproject/templates/aggregator/feeditem_list.html @@ -44,4 +44,4 @@ </div> {% endif %} -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/aggregator/index.html b/djangoproject/templates/aggregator/index.html index 709703e1..1b95e7a8 100644 --- a/djangoproject/templates/aggregator/index.html +++ b/djangoproject/templates/aggregator/index.html @@ -96,8 +96,8 @@ </li> {% endfor %} </ul> -{% endblock %} +{% endblock content %} {% block content-related-extra %} {% top_corporate_members "diamond" "platinum" "gold" header="Diamond, Platinum and Gold Members" %} -{% endblock %} +{% endblock content-related-extra %} diff --git a/djangoproject/templates/aggregator/local-django-community.html b/djangoproject/templates/aggregator/local-django-community.html index b8de2eef..f9c606f0 100644 --- a/djangoproject/templates/aggregator/local-django-community.html +++ b/djangoproject/templates/aggregator/local-django-community.html @@ -3,7 +3,7 @@ {% block content %} -{# Group meetups by country and then by location #} +{# Group meetups by country and then by location #} {% regroup django_communities|dictsort:"continent" by continent as grouped_django_communities %} @@ -14,14 +14,14 @@ {% if grouped_django_communities %}<h3 id="table-of-contents">{% translate "Table of contents" %}<a class="plink" href="#table-of-contents"> ¶</a></h3>{% endif %} <ul> {% for local_django_community in grouped_django_communities %} - <li><a href="#{{ local_django_community.grouper.title | lower }}-meetups">{{ local_django_community.grouper.title }}</a></li> + <li><a href="#{{ local_django_community.grouper.title|lower }}-meetups">{{ local_django_community.grouper.title }}</a></li> {% endfor %} </ul> {% for local_django_community in grouped_django_communities %} - <div id="{{ local_django_community.grouper.title | lower }}-meetups" class="section"> - <h2>{{ local_django_community.grouper.title }} <a class="plink" href="#{{ local_django_community.grouper.title | lower }}-meetups">¶</a></h2> + <div id="{{ local_django_community.grouper.title|lower }}-meetups" class="section"> + <h2>{{ local_django_community.grouper.title }} <a class="plink" href="#{{ local_django_community.grouper.title|lower }}-meetups">¶</a></h2> <ul> {% for django_community in local_django_community.list %} <li> @@ -50,5 +50,4 @@ {% translate "Local Django communities are coming soon. Please check back later." %} {% endfor %} -{##} -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/aggregator/my-feeds.html b/djangoproject/templates/aggregator/my-feeds.html index c266f82e..7a013f15 100644 --- a/djangoproject/templates/aggregator/my-feeds.html +++ b/djangoproject/templates/aggregator/my-feeds.html @@ -24,4 +24,4 @@ {# <li>Claim a feed already in the system.</li> #} </ul> </div> -{% endblock %} +{% endblock content %} |
