Merge "fix project list template to show projects"

This commit is contained in:
Jenkins 2017-07-03 16:35:06 +00:00 committed by Gerrit Code Review
commit 3f4a66f5db

View File

@ -1,3 +1,5 @@
{% set series = 'latest' %}
{% set projects = PROJECT_DATA[series] %}
{% set scriptdir = './common/js/' %}
{% set cssdir = './common/css/' %}
{% extends "templates/base.tmpl" %}
@ -109,7 +111,7 @@
<h3><i class="fa fa-pencil"></i> Using Libraries</h3>
{% for project in projects|sort(attribute='name') %}
{% if project.type == 'library' %}
<a href="/{{project.name}}/latest/"></a><br />
<a href="/{{project.name}}/latest/">{{project.name}}</a><br />
<p>{{project.service}}</p>
{% endif %}
{% endfor %}