pytask/templates/templatetags/_as_modification_display.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 04 Feb 2011 16:38:21 +0530
changeset 558 fd3e6f5f01bd
parent 498 9f04b7bcc333
permissions -rw-r--r--
Use the form helpers templatetag module in the addreviewer template.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
498
9f04b7bcc333 Add a new templatetag to render modified on and by line in documents.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     1
<div id="modification">
9f04b7bcc333 Add a new templatetag to render modified on and by line in documents.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     2
  Created on {{ modification_datetime|date:"r" }} by
9f04b7bcc333 Add a new templatetag to render modified on and by line in documents.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     3
  <a href="{% url view_user_profile user.id %}">
9f04b7bcc333 Add a new templatetag to render modified on and by line in documents.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     4
    {{ user.get_profile.full_name }}
9f04b7bcc333 Add a new templatetag to render modified on and by line in documents.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     5
  </a>
9f04b7bcc333 Add a new templatetag to render modified on and by line in documents.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     6
</div>