summaryrefslogtreecommitdiffstats
path: root/app/templates/_layout.html
blob: 5eaef3fdabf8094b89c69b9574a0ecc5a969f7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <link rel="stylesheet" type="text/css" media="all" href="{{url_for('static', filename='style.css')}}" />
    <script type="text/javascript" src="{{url_for('static',filename='jquery-1.8.0.min.js')}}"></script>
    <title>Fit</title>
  </head>
  <body>
    <div id="header">
      <h1><a href="/">Klausurenarchiv</a><small> @ spline</small></h1>
    </div>

    <div id="content">

      <div id="sub-header">
        {% if study %}
        <p>
            {% if not request.base_url.endswith(url_for('.upload', study=study, course= course))%}
              {% if not request.base_url.endswith(url_for('forbidden')) %}
                <a href="{{url_for('.upload', study=study, course=course)}}">neue Klausur hochladen</a>
              {% endif %}
            {% else %}
              <a href="{{url_for('.courses_show', study=study, course=course)}}">zurück</a>
            {% endif %}
        </p>
        <h2><a href="{{url_for('.courses_show', study=study)}}">{{study.capitalize()}}</a></h2>
        {% endif %}

        <ul class="flashes">
        {% with messages = get_flashed_messages(with_categories=true) %}
            {% for category, message in messages %}
              <li class="{{ category }}">{{ message }}</li>
            {% endfor %}
        {% endwith %}
        </ul>
      </div>

      {% block body %}{% endblock %}

    </div>

    <footer>
      <a href="https://gitlab.spline.inf.fu-berlin.de/cholin/klausuren">source</a>
    </footer>
  </body>
</html>