{% extends 'base.html' %} {% load buttons %} {% block content %}
{{ message.repo_state.commits_count }} changes have been made since {{ message.repo_state.first_commit_date }}. Last change: {{ message.repo_state.last_commit_date }}
running configuration last diffs
{% if message.status == True %}
{{ message.running_config|safe }}
{% else %} {% endif %}
{% for commit in message.repo_state.commits %} {{ commit.date }} | {{ commit.hash }}
{{ commit.date }} | {{ commit.hash }}
{% if commit.diff|length > 1000 %}

{{ commit.diff }}

{% else %}

{{ commit.diff }}

{% endif %}
{% endfor %}
{% endblock %}