{% extends "detail.html" %} {% load yesnoicon %} {% block content %}
| Name | {{ object.name }} |
| Manufacturer | {{ object.manufacturer }} |
| Resin coated | {{ object.resin_coated|yesnoicon }} |
| Colour | {{ object.colour|yesnoicon }} |
| Finish | {{ object.finish }} |
| Misc | |
|---|---|
| Tags | {% for tag in object.tags.all %} {{ tag }} {% endfor %} |
| Created | {{ object.created_at }}{% if object.created_by is not None %} by {{ object.created_by }}{% endif %} |
| Last updated | {{ object.updated_at }}{% if object.updated_by is not None %} by {{ object.updated_by }}{% endif %} |