evorepo/templates/mirrors/index.html
Thayer Williams 780c19c209 Redesigned mirrorlist generator page
Signed-off-by: Dan McGee <dan@archlinux.org>
2010-05-17 14:49:44 -05:00

23 lines
727 B
HTML

{% 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" action=".">
{{ mirrorlist_form.as_p }}
<p><label></label> <input type="submit" value="Generate List" /></p>
</form>
</div>
{% endblock %}