{% extends "detail.html" %} {% load static %} {% load ratings %} {% block content %} {% if object.city is not None %} {% endif %} {% if object.country is not None %} {% endif %} {% if object.linkurl 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 %}
Summary Summary
Name {{ object.name }}
City {{ object.city }}
Country {{ object.country.name }} {{ object.country.code }}
URL {{ object.linkurl }}
Founded {{ object.founded }}
Dissolved {{ object.dissolved }}
Meta Meta
Rating {% ratings object %}
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 %}