aboutsummaryrefslogtreecommitdiff
path: root/templates/license.html
diff options
context:
space:
mode:
authorJames Tunnicliffe <james.tunnicliffe@linaro.org>2012-06-26 14:51:02 +0100
committerJames Tunnicliffe <james.tunnicliffe@linaro.org>2012-06-26 14:51:02 +0100
commite5d97a8c79250e4951211abf43c41751ef6e7233 (patch)
treec1169523c6c36169d3706ff0331c318aa0091bf2 /templates/license.html
parentf8748b6ca32cc200362ddd39360f947f26d6908c (diff)
Moved files out od django-rewrite.
Combines .bzrignore files Deleted django-rewrite directory.
Diffstat (limited to 'templates/license.html')
-rw-r--r--templates/license.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/license.html b/templates/license.html
new file mode 100644
index 0000000..75f18ff
--- /dev/null
+++ b/templates/license.html
@@ -0,0 +1,17 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+ "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+ {% block header %}{% endblock %}
+</head>
+<body>
+ {% block content-header %}{% endblock %}
+ {{ license.text|safe }}
+ {% block content-footer-top %}{% endblock %}
+ <form action="/accept-license?lic={{ license.digest }}&url={{ url }}" method="post">
+ {% csrf_token %}
+ <input class="button button-accept" type="submit" value="Accept" name="accept" /> <input class="button button-decline" type="submit" value="Reject" name="reject"/>
+ </form>
+ {% block content-footer-bottom %}{% endblock %}
+</body>
+</html>