Add page with list of all update configs

This commit is contained in:
rubenwardy
2021-01-30 01:07:00 +00:00
parent c5fa76dab0
commit ac4d5c8c88
4 changed files with 54 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block title %}
{{ _("%(username)s's Automated Update Detection Configs", username=user.display_name) }}
{% endblock %}
{% block content %}
<a class="btn btn-secondary float-right" href="/help/update_config/">Help</a>
<h1 class="mb-5">{{ self.title() }}</h1>
{% from "macros/todo.html" import render_outdated_packages %}
{{ render_outdated_packages(confs, current_user, show_config=True) }}
{% endblock %}