19 lines
544 B
Twig
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 %}
|