{% extends "detail.html" %} {% load static %} {% block content %} {% if object.voltage is not None %} {% endif %} {% if object.chemistry is not None %} {% endif %} {% if object.compatible_with.all %} {% endif %}
Summary Summary
Battery name {{ object.name }}
Voltage {{ object.voltage }}V
Chemistry {{ object.chemistry }}
Ownership Compatibility
Compatible with
    {% for compat in object.compatible_with.all %}
  • {{ compat }}
  • {% endfor %}
Meta Meta
{% endblock %}