{% extends 'generic/object.html' %} {% load validity %} {% load render_table from django_tables2 %} {% block extra_controls %}
{% csrf_token %}
{% endblock %} {% block content %}
Git Repository
Name {{ object.name }}
Head Hash {{ object.head_hash | placeholder }}
Default {{ object.default | checkmark }}
Device Config Path {{ object.device_config_path }}
Git URL {{ object.git_url }}
Web URL {{ object.web_url | placeholder }}
Username {{ object.username | placeholder }}
Password {% if object.encrypted_password %}$encrypted{% else %}{{ '' | placeholder }}{% endif %}
Branch {{ object.branch | placeholder }}
{% include 'inc/panels/tags.html' %}
Bound Devices
{% render_table device_table %}
{%include 'inc/paginator.html' with paginator=device_table.paginator page=device_table.page%}
{% endblock content %}