summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 1e0364faf1adf935ed552279ecee9350de093d15 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "layout.html" %}
{% block title %}Index{% endblock %}
{% block content %}
<ol class="breadcrumb">
  <li class="active">Index</li>
</ol>
<ul class="nav nav-pills nav-stacked">
  <li role="presentation"><a href="{{ url_for('feedback') }}">Feedback list</a></li>
  <li role="presentation"><a href="{{ url_for('stats') }}">Statistics</a></li>
</ul>
{% endblock %}