mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
23 lines
647 B
HTML
23 lines
647 B
HTML
{% extends "todo/todo_base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("All Outdated packages") }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="btn-group btn-group-sm float-right">
|
|
<a class="btn btn-secondary {% if sort_by != 'score' %}active{% endif %}"
|
|
href="{{ url_set_query(sort='date') }}">
|
|
Sort by date
|
|
</a>
|
|
<a class="btn btn-secondary {% if sort_by == 'score' %}active{% endif %}"
|
|
href="{{ url_set_query(sort='score') }}">
|
|
Sort by score
|
|
</a>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
|
|
{% from "macros/todo.html" import render_outdated_packages %}
|
|
{{ render_outdated_packages(outdated_packages, current_user) }}
|
|
{% endblock %}
|