diff options
| author | rubenwardy <rw@rubenwardy.com> | 2020-08-18 17:28:42 +0100 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2020-08-18 17:28:42 +0100 |
| commit | f6ff5cba8296385e20701a34a57ff7a9846d3509 (patch) | |
| tree | 36ba0450487eb907b0f084a5468c3edecff857eb /app/templates/todo/list.html | |
| parent | 193e4e39b1b887e3a1d0f562fa695090ca259d59 (diff) | |
| download | cheatdb-f6ff5cba8296385e20701a34a57ff7a9846d3509.tar.xz | |
Add unfulfilled dependencies todo page
Diffstat (limited to 'app/templates/todo/list.html')
| -rw-r--r-- | app/templates/todo/list.html | 14 |
1 files changed, 14 insertions, 0 deletions
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 @@ <a class="btn btn-primary" href="{{ url_for('todo.tags') }}">View Tags</a> + {% if unfulfilled_meta_packages %} + <h2 class="mt-5"> + <span class="fas fa-exclamation-triangle pr-2" style="color: orange;"></span> + {{ unfulfilled_meta_packages }} Unfulfilled Dependencies + </h2> + + <p> + Meta packages that have hard dependers, but are not fulfilled. + </p> + + <a class="btn btn-primary" href="{{ url_for('todo.metapackages') }}">View</a> + {% endif %} + + <h2 class="mt-5">Unadded Topic List</h2> {% if total_topics > 0 %} |
