{% extends "master.html" %}
{% block title %} {{ super() }} {% endblock %}
{%block tag %}collections{% endblock %}
{% if is_admin %}
{% set options = True %}
{%block options %}
{% endblock %}
{% endif %}
{% block content %}
Search collections
{% if total_page %}
{% if page > 1%}
< Previous
{% else %}
< Previous
{% endif %}
|
{{ page }} / {{ total_page }} |
{% if page < total_page %}
Next >
{% else %}
Next >
{% endif %}
|
{% endif %}
Branch name
|
Name
|
Release
|
Status
|
{% for collection in collections %}
{{ collection. branchname }}
|
{{ collection.name }}
|
{{ collection.version }}
|
{{ collection.status }}
|
{% endfor %}
{% endblock %}