You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
583 B
23 lines
583 B
{% extends "base.html" %} |
|
{% import 'bootstrap/wtf.html' as wtf %} |
|
|
|
{% block app_content %} |
|
<h1>Biscd, what else would you like with your Gitea?</h1> |
|
<div class="table-responsive"> |
|
<table class="table"> |
|
<tbody> |
|
{% for project in projects %} |
|
<tr> |
|
<td>{{ project }}</td> |
|
</tr> |
|
{% endfor %} |
|
</tbody> |
|
</table> |
|
</div> |
|
|
|
<div class="row"> |
|
<div class="col-md-4"> |
|
{{ wtf.quick_form(form) }} |
|
</div> |
|
</div> |
|
{% endblock %}
|
|
|