mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
14 lines
430 B
HTML
14 lines
430 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Git Update Detection for %(username)s", 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 %}
|