Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / helpdesk / templates / helpdesk / base.html @ 2152dd3f

History | View | Annotate | Download (1.7 kB)

1
<!DOCTYPE html>
2
<html lang="en">
3
  <head>
4
    <meta charset="utf-8">
5
    <title>Cyclades helpdesk</title>
6
    <link href="{{ HELPDESK_MEDIA_URL }}css/bootstrap.css" rel="stylesheet">
7
    <link href="{{ HELPDESK_MEDIA_URL }}css/bootstrap-responsive.css" rel="stylesheet">
8
    <link href="{{ HELPDESK_MEDIA_URL }}css/extra.css" rel="stylesheet">
9
    <style>
10
    </style>
11
  </head>
12
  
13
  <body>
14
    <div class="container-fluid">
15
        <div class="row-fluid">
16
            <div class="span7">
17
              <h1><a href="{% url helpdesk-index %}">Cyclades helpdesk</a>
18
              {% block extraheader %}{% endblock %}</h1>
19
            </div>
20
            <div class="span5">
21
                <form class="form-horizontal account-form" method="get" action=".">
22
                  <input type="text" class="input-medium search-query" name="account">
23
                  <button type="submit" class="btn">View account</button>
24
              </form>
25
          </div>
26
      </div>
27
          {% if messages %}
28
          <div class="messages cleafix row-fuild">
29
            {% for message in messages %}
30
                <div class="alert {% if message.tags %}alert-{{ message.tags }}{% endif %}">
31
                  <button class="close" data-dismiss="alert">×</button>
32
                  {{ message }}
33
                </div>
34
                {% endfor %}
35
            </div>
36
        {% endif %}
37
          <div class="messages cleafix row-fuild">
38
    {% block content %}
39
    {% endblock %}
40
</div>
41
    </div>
42
    <script src="{{ MEDIA_URL }}helpdesk/js/jquery.js"></script>
43
    <script src="{{ MEDIA_URL }}helpdesk/js/bootstrap.js"></script>
44
    <script src="{{ MEDIA_URL }}helpdesk/js/jquery.tablesorter.js"></script>
45
    <script src="{{ MEDIA_URL }}helpdesk/js/common.js"></script> 
46
  </body>
47
</html>