{% extends 'shop/base.html' %} {% load i18n static %} {% block extra_css %} {% endblock %} {% block content %}

{% blocktrans with name=shop.name %}Manage “{{ name }}”{% endblocktrans %}

{% trans "Back" %}

{% trans "Hull stockrooms" %}

{% for s in hull_sources %} {% empty %} {% endfor %}
{% trans "Character" %}{% trans "Station" %}{% trans "Container" %}{% trans "Default price" %}
{{ s.character.eve_character.character_name }} {{ s.location.name }} {% if s.container_name %}{{ s.container_name }}{% elif s.container_item_id %}#{{ s.container_item_id }}{% else %}{% trans "Whole station" %}{% endif %} {{ s.price_rule_display }}
{% csrf_token %}
{% trans "No stockrooms yet — hull stock will be 0 (build to order)." %}

{% trans "Hull listings" %}

{% include 'shop/_hull_listings.html' %} {% include 'shop/_source_picker.html' %} {% endblock %} {% block extra_javascript %} {% endblock %}