You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.5 KiB
73 lines
2.5 KiB
5 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
|
||
|
<title>SuperX -> Budget Overview</title>
|
||
|
|
||
|
<link href="{{request.static_url('superx_budget.pyramid:static/img/favicon.ico')}}" type="image/x-icon" rel="shortcut icon">
|
||
|
|
||
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
||
|
<link rel="stylesheet" href="{{request.static_url('superx_budget.pyramid:static/style.css')}}" type="text/css" media="screen" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
|
||
|
<div class="row mb-4">
|
||
|
<div class="col">
|
||
|
<header>
|
||
|
<nav class="navbar navbar-expand navbar-light bg-light">
|
||
|
<span class="navbar-brand bg-info p-3 rounded">Budget Overview From SuperX</span>
|
||
|
|
||
|
<div class="collapse navbar-collapse" id="navbarNav">
|
||
|
<ul class="navbar-nav na">
|
||
|
<li class="nav-item {% if request.view_name !='templates' %}active{% endif %}">
|
||
|
<a class="nav-link" href="/">Create Budget Overview <span class="sr-only">(current)</span></a>
|
||
|
</li>
|
||
|
|
||
|
<li class="nav-item {% if request.view_name =='templates' %}active{% endif %}">
|
||
|
<a class="nav-link" href="/templates">Budget Templates</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</nav>
|
||
|
</header>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% if request.session.peek_flash('error') %}
|
||
|
<div class="row">
|
||
|
<div class="col">
|
||
|
<div class="alert alert-danger" role="alert">
|
||
|
{{ request.session.pop_flash('error')[0] }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{%endif%}
|
||
|
{% if request.session.peek_flash('info') %}
|
||
|
<div class="row">
|
||
|
<div class="col">
|
||
|
<div class="alert alert-primary" role="alert">
|
||
|
{{ request.session.pop_flash('info')[0] }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{%endif%}
|
||
|
|
||
|
|
||
|
{% block content %}
|
||
|
<p>No content</p>
|
||
|
{% endblock content %}
|
||
|
|
||
|
<div class="row mt-3">
|
||
|
<div class="col">
|
||
|
<footer>
|
||
|
<p class="bg-light p-3">Any problems or questions? Please contact <a href="https://wiki.cpi.imtek.uni-freiburg.de/HolgerFrey">Holgi</a>.</p>
|
||
|
</footer>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div></div></div>
|
||
|
</body>
|
||
|
</html>
|