summaryrefslogtreecommitdiffstats
path: root/qtip/web/templates/bench/run.html
blob: 8eaa251b7fbf9a2a8b1a74bfd43b2add45183978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends 'bench/base.html' %}
{% block content %}
    <div>
        <h3>Repos</h3>
        {% for repo in repos %}
        <li>{{ repo.name }}</li>
        {% endfor %}
    </div>
    <form role="form" method="post" action="">{% csrf_token %}
        {{ form }}
        <div class=input-field" style="margin:30px 20px">
            <button  type="submit" value="Login"/>Submit</button>
        </div>
    </form>
{% endblock %}