{% import "bootstrap5/form.html" as wtf %} {% extends "templates/base.html" %} {%- block styles %} {{ super() }} {%- endblock styles %} {% block title %}{{ i18n('plugins.themes.xyzlayer.add') }}{% endblock %} {% block container %}

{{ i18n('plugins.themes.xyzlayer.add') }}

{{ form.csrf_token }} {{ wtf.render_field(form.url, placeholder="https://tile.openstreetmap.org/{z}/{x}/{y}.png", form_type="horizontal") }} {{ wtf.render_field(form.name, form_type="horizontal") }} {{ wtf.render_field(form.title, form_type="horizontal") }} {{ wtf.render_field(form.attribution, form_type="horizontal") }} {{ wtf.render_field(form.crs, form_type="horizontal") }} {{ wtf.render_field(form.thumbnail, form_type="horizontal") }} {{ wtf.render_field(form.submit, class="btn btn-primary") }}
{% endblock %}