diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-05-31 22:35:36 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-05-31 22:35:36 +0100 |
commit | f949bb8dc0d5c5e6c37a5464a8e67d6c5fc8c254 (patch) | |
tree | 16c84d4c238e0bf6bbd209c5e87a3f70e58deb15 /templates/frontpage.html | |
parent | c863bf6e1defbf1bbe66d3be3d6bf57527ca6d22 (diff) | |
download | troggle-f949bb8dc0d5c5e6c37a5464a8e67d6c5fc8c254.tar.gz troggle-f949bb8dc0d5c5e6c37a5464a8e67d6c5fc8c254.tar.bz2 troggle-f949bb8dc0d5c5e6c37a5464a8e67d6c5fc8c254.zip |
python3 fixes for djsngo admin pages
Diffstat (limited to 'templates/frontpage.html')
-rw-r--r-- | templates/frontpage.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/frontpage.html b/templates/frontpage.html index c0aea50..a11b6f7 100644 --- a/templates/frontpage.html +++ b/templates/frontpage.html @@ -6,7 +6,7 @@ {% block related %} <h2>Recent Actions</h2> {% load log %} - {% get_admin_log 10 as admin_log %} + {% get_admin_log 10 as admin_log for_user 1 %} {% if not admin_log %} <p>No recent actions</p> {% else %} |