From 33bf3304a155e5f05148e415377faadf32bcd727 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 30 Jan 2021 00:43:21 +0000 Subject: [PATCH] Add help message and button to outdated packages in to do list --- app/templates/todo/user.html | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/app/templates/todo/user.html b/app/templates/todo/user.html index 96ecf3b..fb98c66 100644 --- a/app/templates/todo/user.html +++ b/app/templates/todo/user.html @@ -6,7 +6,7 @@ {% block content %}

{{ _("Unapproved Packages Needing Action") }}

-
+
{% for package in unapproved_packages %}
@@ -34,7 +34,14 @@
-

{{ _("Outdated Packages") }}

+
Help +

{{ _("Potentially Outdated Packages") }}

+ {% if outdated_packages %} +

+ {{ _("Instead of marking packages as outdated, you can automatically create releases when New Commits or New Tags are pushed to Git by clicking 'Update Settings'.") }} +

+ {% endif %} + {% from "macros/todo.html" import render_outdated_packages %} {{ render_outdated_packages(outdated_packages) }}