diff options
-rw-r--r-- | hyperkitty.spec | 2 | ||||
-rw-r--r-- | hyperkitty/templates/recent_activities.html | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/hyperkitty.spec b/hyperkitty.spec index 0daa41f..fc42e81 100644 --- a/hyperkitty.spec +++ b/hyperkitty.spec @@ -131,7 +131,7 @@ rm -f hyperkitty_standalone/__init__.py hyperkitty_standalone/settings_local.py %{__python} %{_sysconfdir}/%{name}/sites/default/manage.py \ collectstatic --noinput >/dev/null || : %{__python} %{_sysconfdir}/%{name}/sites/default/manage.py \ - assets build --parse-templates >/dev/null || : + assets build --parse-templates &>/dev/null || : %preun diff --git a/hyperkitty/templates/recent_activities.html b/hyperkitty/templates/recent_activities.html index b46f06b..925b076 100644 --- a/hyperkitty/templates/recent_activities.html +++ b/hyperkitty/templates/recent_activities.html @@ -1,4 +1,6 @@ {% extends "base.html" %} + +{% load url from future %} {% load hk_generic %} {% load gravatar %} {% load storm %} |