django-refunds/templates/base.html

44 lines
1.6 KiB
HTML
Raw Normal View History

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 &bull; {% 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>
2016-08-28 10:18:18 +02:00
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
2016-06-04 03:44:41 +02:00
crossorigin="anonymous"></script>
{% endblock javascript %}
2016-06-03 19:33:12 +02:00
{% block style %}
2016-08-28 10:18:18 +02:00
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
2016-06-03 19:33:12 +02:00
<link rel="stylesheet" href="{% static 'default_style.css' %}">
{% endblock style %}
</head>
<body>
{% include 'navbar.html' %}
<div class="container">
{% for message in messages %}
2016-09-16 07:43:53 +02:00
<div class="alert alert-dismissible alert-{{ message.tags }} fade in" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</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>