{% 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.tags.all %} {% endif %} {% if related %} {% endif %} {% if history %} {% endif %}
Name {{ object.name }}
City {{ object.city }}
Country {{ object.country.name }} {{ object.country.code }}
URL {{ object.url }}
Founded {{ object.founded }}
Dissolved {{ object.dissolved }}
Misc
Tags {% for tag in object.tags.all %} {{ tag }} {% endfor %}
Similar manufacturers
    {% for relateditem in related %}
  • {% include "manufacturer.html" with manufacturer=relateditem %}
  • {% endfor %}
Edit history {% include "history.html" %}
Sharing {% include "sharing.html" %}
{% endblock %}