summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-03-10 10:53:51 -0600
committerDan McGee <dan@archlinux.org>2011-03-14 08:32:54 -0500
commit16890b7d8822ae7f82852f01274b11df6aa2ef6a (patch)
tree9ad7d844d7b8c64c41f4c6d02145bdce581eca83
parent9d17938782d661a313b766bb6a3713fbfb5bb155 (diff)
downloadarchweb-16890b7d8822ae7f82852f01274b11df6aa2ef6a.tar.gz
archweb-16890b7d8822ae7f82852f01274b11df6aa2ef6a.zip
Fix relative URL links in admin_log template
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--templates/devel/admin_log.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/devel/admin_log.html b/templates/devel/admin_log.html
index 2de15bad..0f22ba2b 100644
--- a/templates/devel/admin_log.html
+++ b/templates/devel/admin_log.html
@@ -48,7 +48,7 @@
{% if entry.is_deletion %}
{{ entry.object_repr }}
{% else %}
- <a href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a>
+ <a href="/admin/{{ entry.get_admin_url }}">{{ entry.object_repr }}</a>
{% endif %}
</td>
<td>{{ entry.change_message }}</td>