diff options
author | eliott <eliott@cactuswax.net> | 2008-04-28 18:08:54 -0700 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-04-28 18:08:54 -0700 |
commit | 889d15406cb989d35b39560751f1d8373a11a5c0 (patch) | |
tree | b104a27cca8a691b5dbbdf56599dfbee6cebec49 /templates/packages/flag.html | |
parent | 7e62d7f4ba9def136962e0d1cae57b2d49b19b54 (diff) |
removed flag out of date from backend.
Flagging a package out of date is not needed in the backend. Backend only needs
to unflag.
Diffstat (limited to 'templates/packages/flag.html')
-rw-r--r-- | templates/packages/flag.html | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/templates/packages/flag.html b/templates/packages/flag.html deleted file mode 100644 index 215b6fa8..00000000 --- a/templates/packages/flag.html +++ /dev/null @@ -1,26 +0,0 @@ -{% 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> - |