summaryrefslogtreecommitdiffstats
path: root/templates/packages/flag.html
blob: 1071fdf813b522ca6b18b646a45513c94805f4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends "base.html" %}
{% block title %}Arch Linux - Flag Package - {{ pkg.pkgname }}{% endblock %}

{% block content %}
<div>
    {% if confirmed %}
	<p>Thank you. Maintainers have been notified.</p>
    {% else %}
	<p>If you notice that one of Arch's packages is out of date (ie, there is a
    newer <b>stable</b> release available), then please notify us using the
	form below.</p>
	<p>The message box portion of the flag utility is optional, and meant for
	short messages only. If you need more than 200 characters for your
	message, then file a bug report, email the maintainer directly, or send an
	email to the arch-general mailing list with your additional text.</p>

	<p><b>Note:</b> Please do <i>not</i> use this facility if the package is
	broken!  Use the <a href='http://bugs.archlinux.org'>bug tracker</a>
	instead.</p>
    <p>Please confirm your flag request for {{pkg.pkgname}}:</p>
	<form method="post" action=".">
		<table>
			{{form}}
		</table>
		<input type="submit" value=" Confirm " />
	</form>
    {% endif %}
</div>
{% endblock %}