evorepo/templates/packages/flag_confirmed.html
Dan McGee 23020b33a0 Refresh title and other aspects of flag package templates
* Update <title/> to contain version and architecture
* Update some page text to be more descriptive
* Add a meta tag to not directly index these pages in search engines

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-10-18 10:59:14 -05:00

23 lines
867 B
HTML

{% extends "base.html" %}
{% load package_extras %}
{% block title %}Arch Linux - Package Flagged - {{ package.pkgname }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %}
{% block head %}<meta name="robots" content="noindex"/>{% 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|length }} package{{ packages|pluralize }} 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 %}