Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #301 -- Added note to community page that says 'updated every 1…
…5 minutes'

git-svn-id: http://code.djangoproject.com/svn/djangoproject.com@1103 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrian committed Nov 6, 2005
1 parent 6de1762 commit f36d6f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django_website/templates/aggregator/feeditems_list.html
Expand Up @@ -9,11 +9,11 @@
<h1>Community</h1> <h1>Community</h1>
<h2 class="deck">Django hasn't even been officially released yet, and there's <h2 class="deck">Django hasn't even been officially released yet, and there's
already a great, helpful, excited community of Web developers who've been already a great, helpful, excited community of Web developers who've been
hacking away at it. This page aggregates their feeds.</h2> using and discussing it. This page, updated every 15 minutes, aggregates their feeds.</h2>


{% for item in object_list %} {% for item in object_list %}
<h2><a href="{{ item.link }}">{{ item.title }}</a></h2> <h2><a href="{{ item.link }}">{{ item.title }}</a></h2>
<p class='date'>Posted {{ item.date_modified|timesince }} ago by <a href="{{ item.get_feed.public_url }}">{{ item.get_feed.title }}</a> (<a href="{{ item.get_feed.feed_url }}">RSS</a>)</p> <p class='date'>Posted on {{ item.date_modified|date:"F j, Y" }} at {{ item.date_modified|date:"g:i A" }} by <a href="{{ item.get_feed.public_url }}">{{ item.get_feed.title }}</a> <a class="rss" href="{{ item.get_feed.feed_url }}">RSS</a></p>
<div> <div>
{{ item.summary }} {{ item.summary }}
</div> </div>
Expand All @@ -24,4 +24,4 @@ <h2><a href="{{ item.link }}">{{ item.title }}</a></h2>
{% if has_next %}<a href="?page={{ next }}">Earlier posts</a>{% endif %}</p> {% if has_next %}<a href="?page={{ next }}">Earlier posts</a>{% endif %}</p>
</div> </div>


{% endblock %} {% endblock %}

0 comments on commit f36d6f1

Please sign in to comment.