comparison gpp/templates/downloads/add.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children c515b7401078
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'base.html' %}
2 {% load downloads_tags %}
3 {% block title %}Add Download{% endblock %}
4 {% block custom_css %}
5 {{ add_form.media }}
6 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/downloads.css" />
7 {% endblock %}
8 {% block content %}
9 <h2>Downloads</h2>
10 {% downloads_navigation %}
11 <h3>Add Download</h3>
12
13 <p>Use the following form to upload a file. Please note the following:</p>
14 <ul>
15 <li>Please submit an upload only once.</li>
16 <li>All files are reviewed before being made available in the Downloads area.</li>
17 <li>Only certain file types are allowed.</li>
18 <li>Your username and IP address will be recorded, so please do not abuse the system.</li>
19 </ul>
20
21 <h4>Terms of Use</h4>
22
23 <p>By uploading a file, you agree to the following terms:</p>
24 <ol>
25 <li>You are allowing SurfGuitar101 to host the file for an undetermined amount of time.</li>
26 <li>This agreement will serve as your "Written" consent for SurfGuitar101 to host the file.</li>
27 <li>The owners of SurfGuitar101 are absolved of any liability claims resulting from the use of or hosting of your file.</li>
28 <li>You acknowledge you have permission to upload and distribute the file.</li>
29 <li>The file may be removed at any time at the discretion of the staff of SurfGuitar101.</li>
30 </ol>
31
32 <form action="." method="post" enctype="multipart/form-data" id="downloads-add">
33 <fieldset>
34 <legend>Upload Form</legend>
35 <table>
36 {{ add_form.as_table }}
37 <tr>
38 <th>&nbsp;</th>
39 <td>
40 <input type="submit" name="submit_button" value="Add Download" />
41 </td>
42 </table>
43 </fieldset>
44 </form>
45
46 {% endblock %}