{% extends 'admin/base_site.html' %} {% load i18n simpelcore_tags %} {% block title %}{{ title }}{% endblock %} {% block content %}
{{ form.media }} {% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form.hidden_fields %} {{ field }} {% endfor %} {% for field in form.visible_fields %} {% endfor %}
{{ form.name.label }} {{ form.name }} {% if form.name.help_text %}
{{ form.name.help_text }}
{% endif %} {% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.quantity.label }} {{ form.quantity }} {% if form.quantity.help_text %}
{{ form.quantity.help_text }}
{% endif %} {% if form.quantity.errors %}
{{ form.quantity.errors }}
{% endif %}
{{ form.note.label }} {{ form.note }} {% if form.note.help_text %}
{{ form.note.help_text }}
{% endif %} {% if form.note.errors %}
{{ form.note.errors }}
{% endif %}
{% if product.recommended_items.count %}
{% trans "Recommended Bundled Items" %}

{% trans "Anda bisa menambah/menghapus nanti." %}

{% for item in product.recommended_items.all %} {% endfor %}
Nama Satuan Harga {% trans "Quantity" %} Total
{% if item.required %}{{ item.product }} *{% else %}{{ item.product }}{% endif %} {{ item.bundle.unit }} {{ item.product.specific.price|currency }} {{ item.quantity }} {{ item.total|currency }}
{% endif %}
{% trans "Cancel, take me back" %}
{% endblock %}