diff options
author | eliott <eliott@cactuswax.net> | 2007-11-03 03:45:10 -0400 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-11-03 03:45:10 -0400 |
commit | 39a548fd2629f3b6383990264b2e331b3aea99fb (patch) | |
tree | f68c3156dad5f7814473ceff2461679ddf11a2e8 /templates/packages/flag.html |
Initial import for public release...
Special Note
Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd!
Diffstat (limited to 'templates/packages/flag.html')
-rw-r--r-- | templates/packages/flag.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/packages/flag.html b/templates/packages/flag.html new file mode 100644 index 00000000..215b6fa8 --- /dev/null +++ b/templates/packages/flag.html @@ -0,0 +1,26 @@ +{% load validation %} +<html> +<head><title>Flagging Packages</title></head> +<body> +{% if errors %} + {% print_errors errors %} +{% endif %} +<span style="font-family: verdana, arial, helvetica"> +{% if confirmemail %} + Thank you. Maintainers have been notified. +{% else %} +<form method="post" action="."> + Please confirm your flag request.<br /> + <br /> + Email Address: (required) <br /> + <input type="text" name="confirmemail" size="40" maxlength="128" /><br /> + <br /> + Message to dev: (optional)<br /> + <textarea name="usermessage" rows="3" cols="40"></textarea><br /> + <input type="submit" value=" Confirm " /> +</form> +{% endif %} +</span> +</body> +</html> + |