summaryrefslogtreecommitdiffstats
path: root/templates/packages/flag.html
blob: 4a3c6966482bcb2c15bc527a10ad7da18cdca477 (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
30
31
32
33
34
35
36
37
38
39
40
{% extends "base.html" %}
{% block title %}Arch Linux - Flag Package - {{ package.pkgname }}{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}

{% block content %}
<div id="pkg-flag" class="box">
    <h2>Flag Package: {{ package.pkgname }}</h2>

    <p>If you notice a package is out-of-date (i.e., there is a newer
    <strong>stable</strong> release available), then please notify us using
    the form below.</p>

    <p>Note that all of the following packages will be marked out of date:</p>
    <ul>
        {% for pkg in packages %}
        <li>{{ pkg.pkgname }} {{ pkg.full_version }} [{{ pkg.repo.name|lower }}] ({{ pkg.arch.name }})</li>
        {% endfor %}
    </ul>

    <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 <a href="http://mailman.archlinux.org/mailman/listinfo/arch-general"
        title="Visit the arch-general mailing list">arch-general mailing list</a>
    with your additional text.</p>

    <p><strong>Note:</strong> Please do <em>not</em> use this facility if the
    package is broken! Please <a href="https://bugs.archlinux.org/"
        title="Arch Linux Bugtracker">file a bug</a> instead.</p>

    <p>Please confirm your flag request for {{package.pkgname}}:</p>

    <form id="flag-pkg-form" method="post">{% csrf_token %}
        <fieldset>
            {{ form.as_p }}
        </fieldset>
        <p><label></label> <input title="Flag {{ package.pkgname }} as out-of-date" type="submit" value="Flag Package" /></p>
    </form>
</div>
{% endblock %}