29 lines
712 B
Twig
29 lines
712 B
Twig
{% extends 'layout.twig' %}
|
|
|
|
{% block title %}Dashboard{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="twelve columns">
|
|
<h1>Welcome to Colossus!</h1>
|
|
<p>Using Colossus, you can easily organize your hardware benchmark results.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<div class="row">
|
|
<div class="six columns">
|
|
<p><a href="{{ url_for('test.list') }}">View current tests</a></p>
|
|
<p><a href="{{ url_for('test.add') }}">Add a new test</a></p>
|
|
</div>
|
|
|
|
<div class="six columns">
|
|
<p><a href="{{ url_for('result.list') }}">View saved results</a></p>
|
|
<p><a href="{{ url_for('result.add') }}">Add a new result</a></p>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|