summaryrefslogtreecommitdiffstats
path: root/templates/mirrors/index.html
blob: f386ea46c6dd0d474e2b9d9e8c2fe0ee9f351ca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "base.html" %}
{% load package_extras %}
{% block title %}Arch Linux - Pacman Mirrorlist Generator{% endblock %}

{% block content %}
<div id="mirrorlist-gen" class="box">

    <h2>Pacman Mirrorlist Generator</h2>

    <p>The following form can generate a custom up-to-date
    <a href="http://wiki.archlinux.org/index.php/Pacman"
        title="ArchWiki: Pacman">pacman</a> mirrorlist based on geography.
    Simply replace the contents of <code>/etc/pacman.d/mirrorlist</code> with
    the generated code.</p>

    <form id="list-generator" method="post">{% csrf_token %}
        {{ mirrorlist_form.as_p }}
        <p><label></label> <input type="submit" value="Generate List" /></p>
    </form>
</div>
{% endblock %}