evorepo/templates/packages/flag_confirmed.html
Dan McGee 156b91eb59 Use new package details link tag in templates
This replaces a lot of boilerplate we had everywhere, and makes sure
things like the title are consistent across all links.

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-08-09 23:16:00 -05:00

21 lines
695 B
HTML

{% extends "base.html" %}
{% load package_extras %}
{% block title %}Arch Linux - Package Flagged - {{ package.pkgname }}{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
<div id="pkg-flag" class="box">
<h2>Package Flagged - {{ package.pkgname }}</h2>
<p>Thank you, the maintainers have been notified the following packages are out-of-date:</p>
<ul>
{% for pkg in packages %}
<li>{% pkg_details_link pkg %} {{ pkg.full_version }} [{{ pkg.repo.name|lower }}] ({{ pkg.arch.name }})</li>
{% endfor %}
</ul>
<p>You can return to the package details page for {% pkg_details_link package %}.</p>
</div>
{% endblock %}