mirror of
https://github.com/minetest/contentdb.git
synced 2025-01-11 07:27:36 +01:00
13 lines
280 B
HTML
13 lines
280 B
HTML
|
{% extends "todo/todo_base.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
{{ _("Outdated packages") }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>{{ self.title() }}</h2>
|
||
|
|
||
|
{% from "macros/todo.html" import render_outdated_packages %}
|
||
|
{{ render_outdated_packages(outdated_packages) }}
|
||
|
{% endblock %}
|