diff options
author | Ismael Carnales <icarnales@gmail.com> | 2009-10-31 13:22:09 -0200 |
---|---|---|
committer | Ismael Carnales <icarnales@gmail.com> | 2009-11-09 22:24:46 -0200 |
commit | 6243f7ba662b39c25835c65b6641531e8c66c95f (patch) | |
tree | da6e5803ab41ed11096b160307f7ba9c921e5213 /templates/mirrors/index.html | |
parent | c1a197d29a692b7066ad12026f4bb9e92172f6b4 (diff) |
added mirrors app from archweb_pub
Diffstat (limited to 'templates/mirrors/index.html')
-rw-r--r-- | templates/mirrors/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/mirrors/index.html b/templates/mirrors/index.html new file mode 100644 index 00000000..73949c6f --- /dev/null +++ b/templates/mirrors/index.html @@ -0,0 +1,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 %} + |