+ {{ form_start(form, { attr: { class: 'bulle bulle-all-col form-wrapper' } }) }}
+
+
+ {{ form_label(form.version, "", { label_attr: { class: 'form-label' } }) }}
+ {{ form_widget(form.version, { attr: { class: 'form-input' } }) }}
+ {{ form_errors(form.version) }}
+
+
+
+
+ {{ form_widget(form.downloadable) }}
+
+ Téléchargeable
+
+ {{ form_errors(form.downloadable) }}
+
+
+
+
+
+ {{ form_end(form) }}
+
+{% endblock %}
diff --git a/templates/administration/modpacks/index.html.twig b/templates/administration/modpacks/index.html.twig
new file mode 100644
index 0000000..e9bb243
--- /dev/null
+++ b/templates/administration/modpacks/index.html.twig
@@ -0,0 +1,50 @@
+{% extends 'base.html.twig' %}
+
+{% block title %}Administration{% endblock %}
+
+{% block stylesheets %}
+ {{ parent() }}
+
+ {{ form_start(form, { attr: { class: 'bulle bulle-all-col form-wrapper' } }) }}
+
+
+ {{ form_label(form.nom, "", { label_attr: { class: 'form-label' } }) }}
+ {{ form_widget(form.nom, { attr: { class: 'form-input' } }) }}
+ {{ form_errors(form.nom) }}
+
+
+
+ {{ form_label(form.version, "", { label_attr: { class: 'form-label' } }) }}
+ {{ form_widget(form.version, { attr: { class: 'form-input' } }) }}
+ {{ form_errors(form.version) }}
+
+
+
+ {{ form_label(form.uri, "", { label_attr: { class: 'form-label' } }) }}
+ {{ form_widget(form.uri, { attr: { class: 'form-file' } }) }}
+ {{ form_errors(form.uri) }}
+
+
+
+ {{ form_label(form.dependances, "", { label_attr: { class: 'form-label' } }) }}
+ {{ form_widget(form.dependances, { attr: {
+ class: 'form-tom-select-input',
+ 'data-controller': 'tom-select',
+
+ } } ) }}
+ {{ form_errors(form.dependances) }}
+
+
+
+ {{ form_end(form) }}
+
+{% endblock %}
diff --git a/templates/administration/mods/index.html.twig b/templates/administration/mods/index.html.twig
new file mode 100644
index 0000000..7ab4be0
--- /dev/null
+++ b/templates/administration/mods/index.html.twig
@@ -0,0 +1,60 @@
+{% extends 'base.html.twig' %}
+
+{% block title %}Administration{% endblock %}
+
+{% block stylesheets %}
+ {{ parent() }}
+
+ {{ form_start(form, { attr: { class: 'bulle bulle-all-col form-wrapper' } }) }}
+
+
+
+
+ {{ form_end(form) }}
+
+{% endblock %}
diff --git a/templates/administration/users/index.html.twig b/templates/administration/users/index.html.twig
new file mode 100644
index 0000000..930aed1
--- /dev/null
+++ b/templates/administration/users/index.html.twig
@@ -0,0 +1,73 @@
+{% extends 'base.html.twig' %}
+
+{% block title %}Administration{% endblock %}
+
+{% block stylesheets %}
+ {{ parent() }}
+