{% extends "detail.html" %} {% block content %} {% if object.city is not None %} {% endif %} {% if object.country is not None %} {% endif %} {% if object.url is not None %} {% endif %} {% if object.founded is not None %} {% endif %} {% if object.dissolved is not None %} {% endif %} {% if object.created_at is not None %} {% if object.tags.all %} {% endif %} {% endif %} {% if object.updated_at is not None %} {% endif %}
Name {{ object.name }}
City {{ object.city }}
Country {{ object.country }}
URL {{ object.url }}
Founded {{ object.founded }}
Dissolved {{ object.dissolved }}
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 %}
{% if related %}

Similar manufacturers

{% endif %} {% if history %}{% include "history.html" %}{% endif %} {% endblock %}