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 %}