blob: 73949c6f4b29df32800bcc5d028b1fccd15445f2 (
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
|
{% extends "base.html" %}
{% load package_extras %}
{% block title %}Arch Linux - Generate Mirrorlist{% endblock %}
{% block content %}
<div class="box">
<h2 class="title">Generate Custom Mirrorlist</h2>
<form method="post">
<table>
<tr>
<td>Architecture</td>
{% td_input mirrorlist_form.arch %}
</tr>
<tr>
<td>Country</td>
{% td_input mirrorlist_form.country %}
</tr>
<tr>
<td><input type="submit" value="Generate" /></td>
</tr>
</table>
</form>
</div>
{% endblock %}
|