2024-09-17 14:02:17 +02:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
{{ form_start(form) }}
|
|
|
|
<h1 class="page-header">
|
|
|
|
{% if mode=="update" %}
|
|
|
|
Modification CATEGORIE
|
|
|
|
{% elseif mode=="submit" %}
|
|
|
|
Création CATEGORIE
|
|
|
|
{% endif %}
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
{{ form_widget(form.submit) }}
|
|
|
|
|
2024-10-30 22:06:14 +01:00
|
|
|
{% if by=="admin" %}
|
|
|
|
<a class="btn btn-secondary" href={{ path('app_admin_category',{'by':by,'userid':-1}) }}>Annuler</a>
|
|
|
|
{% elseif by=="update" %}
|
|
|
|
<a class="btn btn-secondary" href={{ path('app_user_update',{id:userid}) }}>Annuler</a>
|
|
|
|
{% elseif by=="profil" %}
|
|
|
|
<a class="btn btn-secondary" href={{ path('app_user_profil') }}>Annuler</a>
|
|
|
|
{% endif %}
|
2024-09-17 14:02:17 +02:00
|
|
|
|
|
|
|
{% if mode=="update" and category.id >= 0 %}
|
2024-10-30 22:06:14 +01:00
|
|
|
<a href="{{ path('app_category_delete',{'id':category.id,'by':by}) }}"
|
2024-09-17 14:02:17 +02:00
|
|
|
class="btn btn-danger float-right"
|
|
|
|
data-method="delete"
|
|
|
|
data-confirm="Êtes-vous sûr de vouloir supprimer cet enregistrement ?">
|
|
|
|
Supprimer
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
{% if app.session.flashbag.has('error') %}
|
|
|
|
<div class='alert alert-danger' style='margin: 5px 0px'>
|
|
|
|
<strong>Erreur</strong><br>
|
|
|
|
{% for flashMessage in app.session.flashbag.get('error') %}
|
|
|
|
{{ flashMessage }}<br>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if app.session.flashbag.has('notice') %}
|
|
|
|
<div class='alert alert-info' style='margin: 5px 0px'>
|
|
|
|
<strong>Information</strong><br>
|
|
|
|
{% for flashMessage in app.session.flashbag.get('notice') %}
|
|
|
|
{{ flashMessage }}<br>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
<i class="fa fa-pencil-alt fa-fw"></i> Informations
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-body">
|
2024-10-30 22:06:14 +01:00
|
|
|
{{ form_row(form.user) }}
|
2024-09-17 14:02:17 +02:00
|
|
|
{{ form_row(form.order) }}
|
|
|
|
{{ form_row(form.name) }}
|
|
|
|
|
|
|
|
{{ form_row(form.usecategoryconfig) }}
|
|
|
|
<div id="blockconfig">
|
|
|
|
{{ form_row(form.appthumbwidth) }}
|
|
|
|
{{ form_row(form.appthumbheight) }}
|
|
|
|
{{ form_row(form.appthumbfilter) }}
|
|
|
|
<div id="blockfilter">
|
|
|
|
{{ form_row(form.appthumbfiltergrayscale) }}
|
|
|
|
{{ form_row(form.appthumbfilteropacity) }}
|
|
|
|
{{ form_row(form.appthumbfiltersepia) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ form_end(form) }}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block localjavascript %}
|
|
|
|
function showhide() {
|
|
|
|
if($("#category_usecategoryconfig").val()==0) {
|
|
|
|
$("#blockconfig").hide();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#blockconfig").show();
|
|
|
|
|
|
|
|
if($("#category_appthumbfilter").val()==0) {
|
|
|
|
$("#blockfilter").hide();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#blockfilter").show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$( "#category_usecategoryconfig" ).change(function() {
|
|
|
|
showhide();
|
|
|
|
});
|
|
|
|
|
|
|
|
$( "#category_appthumbfilter" ).change(function() {
|
|
|
|
showhide();
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
showhide();
|
|
|
|
$("#category_order").focus();
|
|
|
|
});
|
|
|
|
{% endblock %}
|