evorepo/templates/news/list.html
Dan McGee 00e9dce4db Fix news permission checking in templates
We were still looking at the permissions on the main application; these
need to be updated to point at the news application instead.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-09-24 11:12:31 -05:00

54 lines
1.6 KiB
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - News{% endblock %}
{% block content %}
<div id="news-article-list" class="box">
<h2>News Archives</h2>
{% if perms.news.add_news %}
<ul class="admin-actions">
<li><a href="/news/add/" title="Add a news item">Add News Item</a></li>
</ul>
{% endif %}
{% include "news/paginator.html" %}
<table id="article-list" class="results">
<thead>
<tr>
<th>Published</th>
<th>Title</th>
<th>Author</th>
{% if perms.news.change_news %}
<th></th>
{% endif %}
</tr>
</thead>
<tbody>
{% for item in news_list %}
<tr class="{% cycle 'odd' 'even' %}">
<td>{{ item.postdate|date }}</td>
<td class="wrap"><a href="{{ item.get_absolute_url }}"
title="View: {{ item.title }}">{{ item.title }}</a></td>
<td>{{ item.author.get_full_name }}</td>
{% if perms.news.change_news %}
<td>
<a href="{{ item.get_absolute_url }}edit/"
title="Edit: {{ item.title }}">Edit</a>
{% endif %}
{% if perms.news.delete_news %}
&nbsp;&nbsp;<a href="{{ item.get_absolute_url }}delete/"
title="Delete: {{ item.title }}">Delete</a>
</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
{% include "news/paginator.html" %}
</div>
{% endblock %}