diff options
Diffstat (limited to 'templates/news/list.html')
-rw-r--r-- | templates/news/list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/news/list.html b/templates/news/list.html index 14ba79b..26e8c26 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 %} - <a href="/news/delete/{{ item.id }}/" + <a href="{{ item.get_absolute_url }}delete/" title="Delete: {{ item.title }}">Delete</a> </td> {% endif %} |