{% extends 'base.html' %} {% load i18n %} {% load staticfiles %} {% load compress %} {% block title %} {% trans "Revision History" %} {% endblock title %} {% block content %}
{% trans "Revision History" %}

{% with date=history_object.history_date|date:"d-m-Y" name=history_object.history_user.full_name %} {% blocktrans trimmed %} {{ date }} by {{ name }} {% endblocktrans %} {% endwith %}


{% trans "Course Title" %}
{{ object.title }} {{ history_object.title }}
{% trans "Course Number" %}
{{ object.number }} {{ history_object.number }}
{% trans "Brief Description" %}
{{ object.short_description }} {{ history_object.short_description }}
{% trans "Full Description" %}
{{ object.full_description }} {{ history_object.full_description }}
{% trans "Expected Learnings" %}
{{ object.expected_learnings }} {{ history_object.expected_learnings }}
{% trans "Primary Subject" %}
{{ object.primary_subject }} {{ history_object.primary_subject }}
{% trans "Secondary Subject" %}
{{ object.secondary_subject }} {{ history_object.secondary_subject }}
{% trans "Tertiary Subject" %}
{{ object.tertiary_subject }} {{ history_object.tertiary_subject }}
{% trans "Prerequisites" %}
{{ object.prerequisites }} {{ history_object.prerequisites }}
{% trans "Course Level" %}
{{ object.level_type }} {{ history_object.level_type }}
{% endblock %} {% block js %} {{ block.super }} {% compress js %} {% endcompress %} {% endblock %}