Burathar
4 years ago
5 changed files with 62 additions and 15 deletions
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
{% extends "base.html" %} |
||||
{% import 'bootstrap/wtf.html' as wtf %} |
||||
|
||||
{% block app_content %} |
||||
<h1>{{ project.name }}</h1> |
||||
<div class="table-responsive"> |
||||
<table class="table"> |
||||
<thead> |
||||
<tr> |
||||
<th scope="col">Branch</th> |
||||
<th scope="col">Git Repo</th> |
||||
<th scope="col">Requirements file</th> |
||||
<th scope="col">Tests</th> |
||||
<th scope="col">Url</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr> |
||||
<td>{{ project.branch }}</td> |
||||
<td>{{ project.git_repo }}</td> |
||||
<td>{{ project.requirements_file }}</td> |
||||
<td>{{ project.tests }}</td> |
||||
<td>{{ project.url }}</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
|
||||
{% endblock %} |
Loading…
Reference in new issue