summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-09-20 16:10:09 -0500
committerDan McGee <dan@archlinux.org>2010-09-21 09:10:02 -0500
commit41dc37c8126f062257ce7d5fc8fcf84286b55a88 (patch)
treec73e8f661ffb68d036f528257148243036b28a82 /templates
parent7c92ddbd3c86d6aaa34abd4b2d3f12775801b50b (diff)
downloadarchweb-41dc37c8126f062257ce7d5fc8fcf84286b55a88.tar.gz
archweb-41dc37c8126f062257ce7d5fc8fcf84286b55a88.zip
Update news views to use slug instead of ID
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r--templates/news/list.html4
-rw-r--r--templates/news/view.html4
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/news/list.html b/templates/news/list.html
index 14ba79b6..26e8c268 100644
--- a/templates/news/list.html
+++ b/templates/news/list.html
@@ -34,11 +34,11 @@
<td>{{ item.author.get_full_name }}</td>
{% if perms.main.change_news %}
<td>
- <a href="/news/edit/{{ item.id }}/"
+ <a href="{{ item.get_absolute_url }}edit/"
title="Edit: {{ item.title }}">Edit</a>
{% endif %}
{% if perms.main.delete_news %}
- &nbsp;&nbsp;<a href="/news/delete/{{ item.id }}/"
+ &nbsp;&nbsp;<a href="{{ item.get_absolute_url }}delete/"
title="Delete: {{ item.title }}">Delete</a>
</td>
{% endif %}
diff --git a/templates/news/view.html b/templates/news/view.html
index 1c92fe78..86a412de 100644
--- a/templates/news/view.html
+++ b/templates/news/view.html
@@ -9,9 +9,9 @@
{% if perms.main.change_news %}
<ul class="admin-actions">
- <li><a href="/news/edit/{{ news.id }}/" title="Edit this article">Edit News Item</a></li>
+ <li><a href="edit/" title="Edit this article">Edit News Item</a></li>
{% if perms.main.delete_news %}
- <li><a href="/news/delete/{{ news.id }}/" title="Delete this article">Delete News Item</a></li>
+ <li><a href="delete/" title="Delete this article">Delete News Item</a></li>
{% endif %}
</ul>
{% endif %}