{% extends request.is_ajax|yesno:"base_ajax.html,base_assets.html" %} {% load static %} {% load paginator from filters %} {% load to_class_name from filters %} {% block title %}Asset Activity Stream{% endblock %} {# TODO: Find a way to reduce code duplication...can't just include the content because of the IDs... #} {% block js %} {% endblock %} {% block content %}
| Date | Object | Version ID | User | Changes | Comment |
| {{ version.revision.date_created }} | {{version.changes.new|to_class_name}} {{ version.changes.new.asset_id|default:version.changes.new.pk }} | {{ version.pk }}|{{ version.revision.pk }} | {{ version.revision.user.name }} | {% if version.changes.old == None %} {{version.changes.new|to_class_name}} Created {% else %} {% include 'RIGS/version_changes.html' %} {% endif %} | {{ version.changes.revision.comment }} |