CHANGE: Further tweak colouration

Red is for broken/lost - things we should have but don't
Yellow is for sold/scrapped - things we had but don't have on purpose
Blue is not built yet because... I don't have a reason for that one.
This commit is contained in:
2019-12-04 21:28:03 +00:00
parent 4bf399090b
commit 68e977d749

View File

@@ -4,11 +4,13 @@
{% if item.status.name == 'Broken' %}
danger
{% elif item.status.name == 'Scrapped'%}
danger
warning
{% elif item.status.name == 'Sold'%}
warning
{% elif item.status.name == 'Lost'%}
warning
danger
{% elif item.status.name == 'Not Built Yet'%}
warning
info
{% elif item.status.name == 'Active'%}
success
{% endif %}