blob: cadc24a275b0e43f76c6c50ce6c0fd25db14c549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{% extends "base.html" %}
{% block title %}Arch Linux - News{% endblock %}
{% block content %}
<div id="news-article-list" class="box">
<h2>News Archives</h2>
{% if perms.main.add_news %}
<ul class="admin-actions">
<li><a href="/news/add/" title="Add a news item">Add News Item</a></li>
</ul>
{% endif %}
<table id="article-list" class="results">
<thead>
<tr>
<th>Published</th>
<th>Title</th>
<th>Author</th>
{% if perms.main.change_news %}
<th></th>
{% endif %}
</tr>
</thead>
<tbody>
{% for item in news_list %}
<tr class="{% cycle 'odd' 'even' %}">
<td>{{ item.postdate }}</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.main.change_news %}
<td>
<a href="/news/edit/{{ item.id }}/"
title="Edit: {{ item.title }}">Edit</a>
{% endif %}
{% if perms.main.delete_news %}
<a href="/news/delete/{{ item.id }}/"
title="Delete: {{ item.title }}">Delete</a>
</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}
|