{{ form.server_type.label(class="block mb-1 text-sm font-medium text-gray-700 dark:text-gray-300") }}
{{ form.server_type(class="w-full border rounded p-2 dark:bg-gray-700 dark:border-gray-600") }}
{{ form.preset_id.label(class="block mb-1 text-sm font-medium text-gray-700 dark:text-gray-300") }}
{{ form.preset_id(class="w-full border rounded p-2 dark:bg-gray-700 dark:border-gray-600", id="preset-select") }}
{{ form.discord_id.label(class="block mb-1 text-sm font-medium text-gray-700 dark:text-gray-300") }}
{{ form.discord_id(class="w-full border rounded p-2 dark:bg-gray-700 dark:border-gray-600", placeholder="123456789012345678") }}
{{ _("Your Discord server ID") }}
{{ form.overseerr_url.label(class="block mb-1 text-sm font-medium text-gray-700 dark:text-gray-300") }}
{{ form.overseerr_url(class="w-full border rounded p-2 dark:bg-gray-700 dark:border-gray-600", placeholder="https://overseerr.example.com") }}
{{ _("URL to your Overseerr/Ombi instance") }}
{% for preset in presets %}
{{ preset.name }}: {{ preset.description }}
{% endfor %}