{% extends 'base.html' %} {% load form_helpers %} {% load buttons %} {% load static %} {% block header %}

{% block title %}GitLab - Export Device{% endblock %}

Exporting to GitLab branch {{ branch }}:

{% endblock %} {% block content %} {% if form.non_field_errors %}
Errors
{{ form.non_field_errors }}
{% endif %} {% for device, diff in diffs.items %}
{{ device }}
{{ diff }}
{% endfor %}
{% csrf_token %} {# Resubmit our original input in case the POST can't be processed #} {{ form.branch.as_hidden }} {# The full new data to be committed, so that nothing can change after viewing the changes #} {{ form.update.as_hidden }}
Cancel
{% include 'netbox_gitlab/diff_highlight_line.html' %} {% endblock %}