{% extends "dashboard/base.html" %} {% load humanize %} {% block page_title %}Delivery Options{% endblock %} {% block dashboard_content %}

Add Delivery Option

{% csrf_token %}
Set 0.00 for free delivery options.

Your Active Delivery Options

{% if options %}
{% for opt in options %}

{{ opt.name }}

{% if opt.fee == 0 %} Free (GHS 0.00) {% else %} GHS {{ opt.fee|floatformat:2 }} {% endif %}
{% if opt.description %}

{{ opt.description }}

{% endif %}
Created {{ opt.created_at|date:"M d, Y" }}
{% csrf_token %}
{% endfor %}
{% else %}

No delivery options set

Add delivery options above (e.g. Within Accra - GHS 0 - Nungua, Osu).

{% endif %}
{% endblock %}