{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% load static %} {% load render_table from django_tables2 %} {% block header %}
Activate

{% block title %}{{ object }}{% endblock %}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Branch
Name {{ object.name|placeholder }}
Created By {{ object.created_by|placeholder }}
Created At {{ object.created_at|placeholder }}
Starting Branch {{ object.source_branch|placeholder }}
Commit Hash {{ object.hash|placeholder }}
Latest Committer {{ object.latest_committer|placeholder }}
Latest Committer Email {{ object.latest_committer_email|placeholder }}
Latest Commit Date {{ object.latest_commit_date|placeholder }}
Latest Commit Message {{ object.latest_commit_message|placeholder }}
{% include 'nautobot_version_control/diffs.html' with results=results %} {% endblock %}