hardened ui against the db not being upgraded or importer not being ran

This commit is contained in:
daydensteve
2024-11-08 09:17:12 -05:00
parent 954bd565d3
commit eb18ad22b8
4 changed files with 103 additions and 78 deletions

View File

@@ -91,6 +91,12 @@
{% endif %}
</div>
{% if nameplates|length == 0 or characters|length == 0 %}
<script>
// Server DB lacks necessary info. Maybe importer never got ran for this verison?
document.getElementById("name_nameplate").innerHTML = "Server DB needs upgraded or is not populated with necessary data";
</script>
{% else %}
<script>
{% include 'titles/chuni/templates/scripts/collapsibles.js' %}
@@ -252,5 +258,5 @@ for (const type of types) {
Collapsibles.expandAll();
</script>
{% endif %}
{% endblock content %}