1
0
Fork 0
get-installer-bootstrap/templates/admin/mapping_form.html.twig
2026-05-05 10:00:56 +02:00

19 lines
544 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{{ title }}{% endblock %}
{% block body %}
<main>
<h1>{{ title }}</h1>
{{ form_start(form) }}
{{ form_row(form.publicPath) }}
{{ form_row(form.repositoryUrl) }}
{{ form_row(form.gitRef) }}
{{ form_row(form.repositoryFilePath) }}
{{ form_row(form.accessToken) }}
{{ form_row(form.active) }}
<button type="submit">Enregistrer</button>
{{ form_end(form) }}
</main>
{% endblock %}