pytask/templatetags/browse_helpers.py
changeset 498 9f04b7bcc333
parent 496 eb1982186306
child 505 a05fde6309e1
--- a/pytask/templatetags/browse_helpers.py	Thu Jan 20 07:56:21 2011 +0530
+++ b/pytask/templatetags/browse_helpers.py	Thu Jan 20 17:42:46 2011 +0530
@@ -25,11 +25,14 @@
       }
 
 
-@register.inclusion_tag('templatetags/_as_div_field.html')
-def as_div_field(field):
-    """Returns the field for each div form field.
+@register.inclusion_tag('templatetags/_as_modification_display.html')
+def as_modification_display(title, user, creation_datatime):
+    """Returns a context dictionary containing the fields necessary
+    to render the creation/modification
     """
 
     return {
-      'field': field,
+      'title': title,
+      'user': user,
+      'modification_datetime': creation_datatime,
       }