{% extends "base.html" %} {% block title %}Shop Settings{% endblock %} {% block page_title %}Shop & Invoice Settings{% endblock %} {% block page_subtitle %}Details shown on invoice PDFs and app branding{% endblock %} {% block content %} {% include "partials/breadcrumb.html" %}

These details appear at the top of every invoice PDF (shop name, address, phone). Customer name, mobile, and address on invoices come from the Customer record on each order.

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}

{{ field.errors.0 }}

{% endif %}
{% endfor %}
Cancel

Invoice preview fields

Shop header:
{{ profile.shop_name|default:"—" }}
Address:
{{ profile.address|default:"—" }}
Phone:
{{ profile.phone|default:"—" }}

After saving, generate a new invoice from an order to see updated PDF.

{% endblock %}