{% extends 'base.html' %} {% load i18n %} {% load static %} {% 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 "Short Description" %}
{{ object.short_description }} {% with history_object.short_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Long Description" %}
{{ object.full_description }} {% with history_object.full_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Expected Learning" %}
{{ object.expected_learnings }} {% with history_object.expected_learnings as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Primary Subject" %}
{{ object.primary_subject }} {% with history_object.primary_subject as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Additional Subject" %}
{{ object.secondary_subject }} {% with history_object.secondary_subject as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Additional Subject" %}
{{ object.tertiary_subject }} {% with history_object.tertiary_subject as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Prerequisites" %}
{{ object.prerequisites }} {% with history_object.prerequisites as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Course Level" %}
{{ object.level_type }} {% with history_object.level_type as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Learner Testimonials" %}
{{ object.learner_testimonial }} {% with history_object.learner_testimonial as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "FAQ" %}
{{ object.faq }} {% with history_object.faq as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "About Video Link" %}
{{ object.video_link }} {{ history_object.video_link }}
{% endblock %} {% block js %} {{ block.super }} {% compress js %} {% endcompress %} {% endblock %}