{% 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.link 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 %}
Summary Summary
Name {{ object.name }}
City {{ object.city }}
Country {{ object.country.name }} {{ object.country.code }}
Link {{ object.link }}
Founded {{ object.founded }}
Dissolved {{ object.dissolved }}
Meta Meta
Rating {% ratings object %}
Tags {% for tag in object.tags.all %} {{ tag.slug }} {% endfor %}
Similar manufacturers
    {% for relateditem in related %}
  • {% include "manufacturer.html" with manufacturer=relateditem %}
  • {% endfor %}
Sharing {% include "sharing.html" %}
{% endblock %}