2024-09-17 14:02:17 +02:00
|
|
|
{% extends "base.html.twig" %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<h1 class="page-header">
|
|
|
|
CONFIGURATIONS
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="row mt-4">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<h3>Générale</h3>
|
2024-10-30 17:58:39 +01:00
|
|
|
{{ render(path("app_admin_config_render",{by:by,category:"site",userid:-1})) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h3>Couleurs des fonds de page</h3>
|
2024-10-30 17:58:39 +01:00
|
|
|
{{ render(path("app_admin_config_render",{by:by,category:"colorbgbody",userid:-1})) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h3>Polices</h3>
|
2024-10-30 17:58:39 +01:00
|
|
|
{{ render(path("app_admin_config_render",{by:by,category:"font",userid:-1})) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h3>Couleurs des titres </h3>
|
2024-10-30 17:58:39 +01:00
|
|
|
{{ render(path("app_admin_config_render",{by:by,category:"colorfttitle",userid:-1})) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h3>Couleurs de la police </h3>
|
2024-10-30 17:58:39 +01:00
|
|
|
{{ render(path("app_admin_config_render",{by:by,category:"colorftbody",userid:-1})) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h3>Logo</h3>
|
2024-10-30 17:58:39 +01:00
|
|
|
{{ render(path("app_admin_config_render",{by:by,category:"logo",userid:-1})) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
|
|
|
|
<h3>Social</h3>
|
2024-10-30 17:58:39 +01:00
|
|
|
{{ render(path("app_admin_config_render",{by:by,category:"social",userid:-1})) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h3>Carrousel</h3>
|
2024-10-30 17:58:39 +01:00
|
|
|
{{ render(path("app_admin_config_render",{by:by,category:"hero",userid:-1})) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
|
|
|
|
<h3>Image</h3>
|
2024-10-30 17:58:39 +01:00
|
|
|
{{ render(path("app_admin_config_render",{by:by,category:"image",userid:-1})) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block localjavascript %}
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('#dataTables').DataTable({
|
|
|
|
columnDefs: [ { "targets": "no-sort", "orderable": false }, { "targets": "no-string", "type" : "num" } ],
|
|
|
|
responsive: true,
|
|
|
|
iDisplayLength: 100,
|
|
|
|
order: [[ 1, "asc" ]]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
{% endblock %}
|