{% extends 'inventory/base.html' %} {% block title %}Color List{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

COLOR LIST

{% for color in colors %} {% endfor %}
Color Name RAL NUMBER Added By Created At Updated At Action
{{ color.name }} {{ color.RAL_NUMBER }} {{ color.added_by }} {{ color.created_at }} {{ color.updated_at }}
{% for color in colors %} {% endfor %}
{% endblock %}