summaryrefslogtreecommitdiffstats
path: root/apps/it/templatetags/it_tags.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/it/templatetags/it_tags.py')
-rw-r--r--apps/it/templatetags/it_tags.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/it/templatetags/it_tags.py b/apps/it/templatetags/it_tags.py
index 62b5db3..592ac82 100644
--- a/apps/it/templatetags/it_tags.py
+++ b/apps/it/templatetags/it_tags.py
@@ -11,3 +11,15 @@ def markdown(text):
import markdown
result = markdown.markdown(text)
return safestring.mark_safe(result)
+
+@register.simple_tag
+def new_issue_count(request):
+ return safestring.mark_safe('14')
+
+@register.simple_tag
+def new_asset_count(request):
+ return safestring.mark_safe('9')
+
+@register.simple_tag
+def new_docs_count(request):
+ return safestring.mark_safe('6')