From 3832a18d63de5e03545b9e9e3f1164185a08d6dc Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Sat, 11 Apr 2020 20:34:10 -0700 Subject: [PATCH] Add review status to editor listing --- amanuensis/templates/lexicon/editor.html | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/amanuensis/templates/lexicon/editor.html b/amanuensis/templates/lexicon/editor.html index 371cf95..b47c52a 100644 --- a/amanuensis/templates/lexicon/editor.html +++ b/amanuensis/templates/lexicon/editor.html @@ -53,9 +53,16 @@ {% for article in articles %} {% if article.character == char.cid %}
  • - - {{ article.title if article.title.strip() else "Untitled" }} - + {{ article.title if article.title.strip() else "Untitled" }} + + {% if not article.status.ready %} + [Draft] + {% elif not article.status.approved %} + [Pending] + {% else %} + [Approved] + {% endif %} +
  • {% endif %} {% endfor %}