summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Granberg <zorry@gentoo.org>2017-01-15 20:44:38 +0100
committerMagnus Granberg <zorry@gentoo.org>2020-04-09 07:38:53 +0200
commit593e2eed315dbac85b6318a3cf4dd9fa390c8041 (patch)
treec6ebb3044ebda6a4db180ee458d1afe538ee6e7e /python/templates/pages/projects/repos/index.html
parentfix ame 'adict' is not defined line 273 (diff)
downloadtinderbox-cluster-www-593e2eed315dbac85b6318a3cf4dd9fa390c8041.tar.gz
tinderbox-cluster-www-593e2eed315dbac85b6318a3cf4dd9fa390c8041.tar.bz2
tinderbox-cluster-www-593e2eed315dbac85b6318a3cf4dd9fa390c8041.zip
Update code to use gosbs backend
Signed-off-by: Magnus Granberg <zorry@gentoo.org>
Diffstat (limited to 'python/templates/pages/projects/repos/index.html')
-rw-r--r--python/templates/pages/projects/repos/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/python/templates/pages/projects/repos/index.html b/python/templates/pages/projects/repos/index.html
new file mode 100644
index 0000000..bc349da
--- /dev/null
+++ b/python/templates/pages/projects/repos/index.html
@@ -0,0 +1,31 @@
+{% extends "layout/base.html" %}
+{% block content %}
+<div class="panel panel-default">
+ <div class="table-responsive">
+ <table class="table table-striped">
+ <table class="table table-striped frontpage-table">
+ {% for project in Projects %}
+ <tr>
+ <td class="frontpage-table-project-atom"><a href="{% url 'projects:detail' project.uuid %}" title="{{ project.title }}">{{ project.title }}</a></td>
+ <td><p title="{{ project.description }}">{{ project.description }}</p>
+ <td class="text-right">
+ </td></td>
+ </tr>
+ {% endfor %}
+</table>
+ </table>
+<table class="table table-striped">
+ <table class="table table-striped frontpage-table">
+ {% for project in Projects %}
+ <tr>
+ <td class="frontpage-table-project-atom"><a href="{% url 'projects:detail' project.uuid %}" title="{{ project.title }}">{{ project.title }}</a></td>
+ <td><p title="{{ project.description }}">{{ project.description }}</p>
+ <td class="text-right">
+ </td></td>
+ </tr>
+ {% endfor %}
+</table>
+ </table>
+ </div>
+</div>
+{% endblock %}