base.html
964 Bytes
<!doctype html>
<title>{% block title %}{% endblock %} - KS</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<nav>
<h1>DataManagerSystem</h1>
<ul>
{# {% if g.db %}#}
{# <li><a href="{{ url_for('data.index') }}">数据列表</a>#}
{# <li><a href="{{ url_for('databaseauth.logout') }}">Disconnet</a>#}
{# <li><a >{{g.host}}:{{g.database}}</a>#}
{# <li><a href="{{ url_for('data.add') }}">Add data</a>#}
{# {% else %}#}
{# <li><a href="{{ url_for('databaseauth.login') }}">Connect</a>#}
{# {% endif %}#}
{# <li><a href="{{ url_for('data.index') }}">数据列表</a>#}
{# <li><a href="{{ url_for('data.add') }}">Register data</a>#}
</ul>
</nav>
<section class="content">
<header>
{% block header %}{% endblock %}
</header>
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
{% block content %}{% endblock %}
</section>