aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/web_ui/templates/repos/index.html.jinja
diff options
context:
space:
mode:
Diffstat (limited to 'src/hydrilla/proxy/web_ui/templates/repos/index.html.jinja')
-rw-r--r--src/hydrilla/proxy/web_ui/templates/repos/index.html.jinja18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/hydrilla/proxy/web_ui/templates/repos/index.html.jinja b/src/hydrilla/proxy/web_ui/templates/repos/index.html.jinja
index 07506e8..e6e9036 100644
--- a/src/hydrilla/proxy/web_ui/templates/repos/index.html.jinja
+++ b/src/hydrilla/proxy/web_ui/templates/repos/index.html.jinja
@@ -19,19 +19,27 @@ file's licenses. Although I request that you do not make use this code
in a proprietary work, I am not going to enforce this in court.
#}
{% extends "base.html.jinja" %}
+
{% block title %}{{ _('web_ui.repos.title') }}{% endblock %}
+
{% block style %}
{{ super() }}
{% include 'include/item_list_style.css.jinja' %}
{% endblock %}
+
{% block main %}
<h3>{{ _('web_ui.repos.heading') }}</h3>
- <div>
- <a href="{{ url_for('.add_repo') }}" class="green-button">
- {{ _('web_ui.repos.add_repo_button') }}
- </a>
- </div>
+
+ <a href="{{ url_for('.add_repo') }}"
+ class="green-button block-with-bottom-margin">
+ {{ _('web_ui.repos.add_repo_button') }}
+ </a>
+
+ <div class="horizontal-separator"></div>
+
+ <h4>{{ _('web_ui.repos.repo_list_heading') }}</h4>
+
<ul id="item_list">
{% for info in display_infos %}
{% set entry_classes = [] %}