{% extends "parody_web/base.html" %} {% load parody_web %} {% block title %}{{ system.title }} — {{ book.title }}{% endblock %} {% block head_extra %} {% endblock %} {% block body %}

{{ system.title }}

{% if system.description %}

{{ system.description }}

{% endif %} {% if systems_list|length > 1 %}

Systems: {% for s in systems_list %}{% if s.version == system.version %}{{ s.version }}{% else %}{{ s.version }}{% endif %}{% if not forloop.last %} · {% endif %}{% endfor %}

{% endif %} {% for c in system.components %}

{% if c.name %}{{ c.name }}{% else %}{{ c.subsystem_title }}{% endif %} {% if c.kind %}— {{ c.kind }}{% endif %}

{% if c.description %}

{{ c.description }}

{% endif %} {% if c.quantity %}

Quantity: {{ c.quantity }}

{% endif %} {% if c.specs %} {% for label, value in c.specs %}{% endfor %}
{{ label }}{{ value }}
{% endif %} {% if c.suppliers %}

Suppliers: {% for sup in c.suppliers %}{{ sup.name }}{% if not forloop.last %} · {% endif %}{% endfor %}

{% endif %} {% if c.choices %}
{% for ch in c.choices %} {{ ch.name }}{% if ch.kind == "specific" %} (recommended){% endif %} {% if ch.description %}

{{ ch.description }}

{% endif %} {% if ch.fields %}{% for label, value in ch.fields %}{% endfor %}
{{ label }}{{ value }}
{% endif %} {% if ch.suppliers %}

Suppliers: {% for sup in ch.suppliers %}{{ sup.name }}{% if not forloop.last %} · {% endif %}{% endfor %}

{% endif %} {% endfor %}
{% endif %}
{% endfor %} {% endblock %}