{% extends 'auth/dashboard.html' %} {% load static %} {% block content %}

Input Shop

{% if show_shop_actions %}Browse varieties, add to cart, and checkout directly. {% else %}Browse varieties and request a contract for yourself or your group.{% endif %}

Orders {{ input_shop_order_count|default:0 }} {% if user_type == 'ADMIN' or request.user.is_staff or request.user.is_superuser %} Manage Orders {% endif %} {% if show_shop_actions %} {% endif %}
{% if selected_input_type %}{% endif %} {% if selected_payment %}{% endif %} {% if min_price %}{% endif %} {% if max_price %}{% endif %} {% if in_stock %}{% endif %}
{% if selected_input_type or selected_payment or min_price or max_price or search_query %}
Active: {% if selected_input_type %}Type: {{ selected_input_type }}{% endif %} {% if selected_payment %}Payment: {{ selected_payment }}{% endif %} {% if min_price %}Min: KES {{ min_price }}{% endif %} {% if max_price %}Max: KES {{ max_price }}{% endif %} {% if search_query %}Search: {{ search_query }}{% endif %} Clear all
{% endif %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

Showing {{ page_obj.start_index }}–{{ page_obj.end_index }} of {{ page_obj.paginator.count }} variet{{ page_obj.paginator.count|pluralize:"y,ies" }}

{% if selected_input_type or selected_payment or min_price or max_price or search_query %} Clear filters {% endif %}
{% if page_obj.object_list %}
{% for v in page_obj.object_list %}
{{ v.name }}
{% if v.total_stock > 0 %} In stock {% else %} Out of stock {% endif %}
{{ v.input_type_display|default:v.input_type }}

{{ v.input_name }}

{{ v.name }}

{% if v.description %}

{{ v.description }}

{% endif %}

Price

{% if v.min_price == v.max_price %}

KES {{ v.min_price }}

{% else %}

KES {{ v.min_price }}–{{ v.max_price }}

{% endif %}
{% for pt in v.payment_types %} {{ pt }} {% endfor %} Stock: {{ v.total_stock }} {% if v.package_count > 1 %} {{ v.package_count }} packages {% endif %}
{% if show_shop_actions %} {% if v.single_package %} View Details {% else %} Choose Package {% endif %} {% endif %} {% if show_contract_actions %} {% if v.single_package %} Request Input {% if group_modal_groups %} {% endif %} {% else %} Choose Package {% endif %} {% endif %}
{% endfor %}
{% else %}

No varieties found

Try adjusting your filters or search term.

Clear All Filters
{% endif %}
{% if show_shop_actions %} {% endif %} {% if show_shop_actions %} {% endif %} {% if show_contract_actions %} {% endif %} {% endblock %}