mirror of
https://github.com/sartography/protocol-builder-mock.git
synced 2025-02-04 20:03:56 +00:00
24 lines
397 B
HTML
24 lines
397 B
HTML
|
|
||
|
<doctype html>
|
||
|
<head>
|
||
|
<title>Protocol Builder Mock</title>
|
||
|
</head>
|
||
|
|
||
|
<h2>Protocol Builder Mock</h2>
|
||
|
|
||
|
<p><p>
|
||
|
<a href="{{ url_for('.new_study') }}"> New Study </a>
|
||
|
|
||
|
{% with messages = get_flashed_messages() %}
|
||
|
{% if messages %}
|
||
|
<ul class=flashes>
|
||
|
{% for message in messages %}
|
||
|
<li>{{ message }}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|
||
|
{% endwith %}
|
||
|
|
||
|
{{ table }}
|
||
|
|
||
|
</doctype>
|