{% extends "layout.html" %} {% load static %} {% block head %} Settings - PtpUploader {% endblock %} {% block body %}

{% csrf_token %} {# Include the hidden fields #} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {# Include the visible fields #} {{ form.image_host_use.errors }} {{ form.ptp_username.errors }} {{ form.ptp_password.errors }} {{ form.ptp_announce_url.errors }} {{ form.client_use.errors }} {{ form.client_address.errors }}
Image Hosts
{{ form.image_host_use.label_tag }} {{ form.image_host_use }}
PTP
{{ form.ptp_username.label_tag }} {{ form.ptp_username }}
{{ form.ptp_password.label_tag }} {{ form.ptp_password }}
{{ form.ptp_announce_url.label_tag }} {{ form.ptp_announce_url }}
Client
{{ form.client_use.label_tag }} {{ form.client_use }}
{{ form.client_address.label_tag }} {{ form.client_address }}
{% endblock %}