~danilo/linaro-license-protection/django-refactor-deployment

« back to all changes in this revision

Viewing changes to templates/license.html

Full refactoring with some cleanups (bzr mv files instead of deleting then adding them in a different place.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 
2
    "http://www.w3.org/TR/html4/loose.dtd">
 
3
<html>
 
4
<head>
 
5
  {% block header %}{% endblock %}
 
6
</head>
 
7
<body>
 
8
  {% block content-header %}{% endblock %}
 
9
  {{ license.text|safe }}
 
10
  {% block content-footer-top %}{% endblock %}
 
11
  <form action="/accept-license?lic={{ license.digest }}&url={{ url }}" method="post">
 
12
    {% csrf_token %}
 
13
    <input class="button button-accept" type="submit" value="Accept" name="accept" /> <input class="button button-decline" type="submit" value="Reject" name="reject"/>
 
14
  </form>
 
15
  {% block content-footer-bottom %}{% endblock %}
 
16
</body>
 
17
</html>