evorepo/templates/packages/flagged.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

16 lines
478 B
HTML

{% extends "base.html" %}
{% load package_extras %}
{% block title %}Arch Linux - Flag Package - {{ pkg.pkgname }}{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
<div id="pkg-flagged-error" class="box">
<h2>Error: Package already flagged</h2>
<p><strong>{{pkg.pkgname}}</strong> has already been flagged out-of-date.</p>
<p>You can return to the package details page for {% pkg_details_link pkg %}.</p>
</div>
{% endblock %}