blob: 1278648386385c3385118cece74f9bc95d61d12b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends 'repos.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% set btn_back = true %}
{% block nav_repos %} active{% endblock %}
{% block nav_repos_details %} active{% endblock %}
{% block nav_repos_update %}active{% endblock %}
{% block content %}
<h2 class="mx-5 subhead-heading">{{_('Update repo')}}</h2>
{% include 'repo_inspector.html' %}
{% endblock %}
|