{% load base_filters %} {% if obj.creator.username %} {% url "profile" obj.creator.username as creator_profile_url %} {% blocktrans with create_date=obj.create_dt|date:"long" creator_username=obj.creator.username creator_profile_url=creator_profile_url %}
  • Created on {{ create_date }} by: {{ creator_username }}
  • {% endblocktrans %} {% else %} {% blocktrans with create_date=obj.create_dt|date:"long" %}
  • Created on: {{ create_date }}
  • {% endblocktrans %} {% endif %} {% if obj.owner.username %} {% url "profile" obj.owner.username as owner_profile_url %} {% blocktrans with update_date=obj.update_dt|date:"long" owner_username=obj.owner.username owner_profile_url=owner_profile_url %}
  • Last updated {{ update_date }} by: {{ owner_username }}
  • {% endblocktrans %} {% else %} {% blocktrans with update_date=obj.update_dt|date:"long" %}
  • Last updated: {{ update_date }}
  • {% endblocktrans %} {% endif %}