Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / base.html @ 64cd4730

History | View | Annotate | Download (778 Bytes)

1 64cd4730 Antony Chazapis
<!DOCTYPE html>
2 64cd4730 Antony Chazapis
<html>
3 64cd4730 Antony Chazapis
<head>
4 64cd4730 Antony Chazapis
  <meta charset="utf-8" />
5 64cd4730 Antony Chazapis
  <title>{{ title|default:"User Admin" }}</title>
6 64cd4730 Antony Chazapis
  <link rel="stylesheet" href="/im/static/bootstrap.css">
7 64cd4730 Antony Chazapis
  <script src="/im/static/jquery.js"></script>
8 64cd4730 Antony Chazapis
  <script src="/im/static/jquery.tablesorter.js"></script>
9 64cd4730 Antony Chazapis
  <script src="/im/static/main.js"></script>
10 64cd4730 Antony Chazapis
  {% block head %}{% endblock %}
11 64cd4730 Antony Chazapis
</head>
12 64cd4730 Antony Chazapis
<body>
13 64cd4730 Antony Chazapis
  <div class="container">
14 64cd4730 Antony Chazapis
    <div style="padding: 5px 0px 0px 0px">
15 64cd4730 Antony Chazapis
      <img src="/im/static/banner.png" width="900" height="200">
16 64cd4730 Antony Chazapis
    </div>
17 64cd4730 Antony Chazapis
    {% block title %}{% endblock %}
18 64cd4730 Antony Chazapis
    
19 64cd4730 Antony Chazapis
    {% if message %}
20 64cd4730 Antony Chazapis
    <br />
21 64cd4730 Antony Chazapis
    <div class="alert-message.{{ status }}">
22 64cd4730 Antony Chazapis
      <p>{{ message }}</p>
23 64cd4730 Antony Chazapis
    </div>
24 64cd4730 Antony Chazapis
    {% endif %}
25 64cd4730 Antony Chazapis
26 64cd4730 Antony Chazapis
    {% block tabs %}{% endblock %}
27 64cd4730 Antony Chazapis
28 64cd4730 Antony Chazapis
    {% block body %}{% endblock %}
29 64cd4730 Antony Chazapis
  </div>
30 64cd4730 Antony Chazapis
</body>
31 64cd4730 Antony Chazapis
</html>