mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-23 14:32:25 +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 %}
|