2016-06-03 19:33:12 +02:00
|
|
|
{% load staticfiles %}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2016-06-03 20:02:26 +02:00
|
|
|
<title>Refunds • {% block title %}{% endblock %}</title>
|
2016-06-03 19:33:12 +02:00
|
|
|
|
|
|
|
<meta charset="utf-8">
|
2016-07-21 16:19:22 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
2016-06-03 19:33:12 +02:00
|
|
|
|
2016-06-04 03:44:41 +02:00
|
|
|
{% block javascript %}
|
|
|
|
<script src="https://code.jquery.com/jquery-2.2.3.min.js"
|
|
|
|
integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo="
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
|
|
|
|
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
{% endblock javascript %}
|
|
|
|
|
2016-06-03 19:33:12 +02:00
|
|
|
{% block style %}
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="{% static 'default_style.css' %}">
|
|
|
|
{% endblock style %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include 'navbar.html' %}
|
|
|
|
|
|
|
|
<div class="container">
|
2016-06-04 12:04:17 +02:00
|
|
|
{% for message in messages %}
|
|
|
|
<div class="alert alert-dismissible alert-{{ message.tags }}" role="alert">
|
|
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
{{ message }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
2016-06-03 19:33:12 +02:00
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
2016-07-13 00:43:02 +02:00
|
|
|
</html>
|