Skip to content

Commit

Permalink
Feed list now shows approval status.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinabrahms committed Feb 3, 2012
1 parent 006c2ca commit 5335153
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions django_website/templates/aggregator/my-feeds.html
Expand Up @@ -8,17 +8,17 @@ <h2 class="deck">Manage your community aggregator feeds:</h2>
<ul>
{% for feed in feeds %}
<li>
{{ feed }} (<code>{{ feed.feed_url }}</code>) —
<a href="{% url community-edit-feed feed.id %}">edit</a> |
{{ feed }} (<code>{{ feed.feed_url }}</code><strong>{{ feed.get_approval_status_display }}</strong>) —
<a href="{% url community-edit-feed feed.id %}">edit</a> |
<a href="{% url community-delete-feed feed.id %}">delete</a>
</li>
{% endfor %}
<li>Add a new feed:
<li>Add a new feed:
{% for t in feed_types %}
<a href="{% url community-add-feed t.slug %}">{{ t }}</a>
{% if not forloop.last %}|{% endif %}
{% endfor %}
</li>
{# <li>Claim a feed already in the system.</li> #}
</ul>
{% endblock %}
{% endblock %}

0 comments on commit 5335153

Please sign in to comment.