From f6ff5cba8296385e20701a34a57ff7a9846d3509 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Tue, 18 Aug 2020 17:28:42 +0100 Subject: Add unfulfilled dependencies todo page --- app/templates/todo/list.html | 14 ++++++++++++++ app/templates/todo/metapackages.html | 24 ++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 app/templates/todo/metapackages.html (limited to 'app/templates') diff --git a/app/templates/todo/list.html b/app/templates/todo/list.html index 4d0b75c..24d5289 100644 --- a/app/templates/todo/list.html +++ b/app/templates/todo/list.html @@ -115,6 +115,20 @@ View Tags + {% if unfulfilled_meta_packages %} +

+ + {{ unfulfilled_meta_packages }} Unfulfilled Dependencies +

+ +

+ Meta packages that have hard dependers, but are not fulfilled. +

+ + View + {% endif %} + +

Unadded Topic List

{% if total_topics > 0 %} diff --git a/app/templates/todo/metapackages.html b/app/templates/todo/metapackages.html new file mode 100644 index 0000000..9135fe1 --- /dev/null +++ b/app/templates/todo/metapackages.html @@ -0,0 +1,24 @@ +{% extends "base.html" %} + +{% block title %} +Unfulfilled Meta Packages +{% endblock %} + +{% block content %} +

Unfulfilled Meta Packages

+ +

+ Meta packages that have hard dependers, but are not fulfilled. +

+ +
+ {% for meta in mpackages %} + + {{ meta.name }} + + {% else %} +
  • No meta packages found.
  • + {% endfor %} +
    +{% endblock %} -- cgit v1.2.3