From 9734f5f2032fff1aa4d9d95ef0c786f25c17f5da Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Sat, 21 Nov 2020 21:30:27 +0100 Subject: [PATCH] client: v1.4.4; improved table header --- client/templates/admin/roadmaps/overview.html | 8 ++++---- client/version.json | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/client/templates/admin/roadmaps/overview.html b/client/templates/admin/roadmaps/overview.html index e8f49a4..20502a0 100644 --- a/client/templates/admin/roadmaps/overview.html +++ b/client/templates/admin/roadmaps/overview.html @@ -21,8 +21,8 @@ <table class="bordered"> <thead> <tr> + <th data-field="visibility"></th> <th data-field="id">ID</th> - <th data-field=""><i class="material-icons left">public</i></th> <th data-field="project-name">Project Name</th> <th data-field="actions"></th> </tr> @@ -32,12 +32,12 @@ {% if roadmaps|length > 0 %} {% for roadmap in roadmaps %} <tr> - <td>{{ roadmap["ID"] }}</td> {% if roadmap["Hidden"] %} - <td class="roadmapHidden"><i class="material-icons left">lock</i></td> + <td class="roadmapHidden"><i class="material-icons">lock</i></td> {% else %} - <td class="roadmapHidden"><i class="material-icons left">public</i></td> + <td class="roadmapHidden"><i class="material-icons">public</i></td> {% endif %} + <td>{{ roadmap["ID"] }}</td> <td> <a class="tooltipped" data-position="bottom" data-delay="50" data-tooltip="Open Roadmap" href="{{ url_for("roadmap_by_id", roadmapID=roadmap["ID"]) }}">{{ roadmap["Projectname"] }}</a> diff --git a/client/version.json b/client/version.json index 89f7e75..2ded742 100644 --- a/client/version.json +++ b/client/version.json @@ -1,7 +1,7 @@ { "version": { - "name": "v1.4.3", - "code": 18, + "name": "v1.4.4", + "code": 19, "date": "21.11.20" } } \ No newline at end of file -- GitLab