mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
Merge branch '675-active-scope' into VSR-issues
This commit is contained in:
commit
9f00754eb7
@ -36,7 +36,7 @@ final class AdminMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 5000,
|
'order' => 5000,
|
||||||
'icons' => ['exchange'],
|
//'icons' => ['exchange'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('Activity Reasons', [
|
$menu->addChild('Activity Reasons', [
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="{% block crud_content_main_div_class %}col-10 centered{% endblock %}">
|
|
||||||
{% block crud_content_header %}
|
{% block crud_content_header %}
|
||||||
<h1>{{ ('crud.'~crud_name~'.title_delete')|trans({ '%as_string%': 'Aside Activity' }) }}</h1>
|
<h1>{{ ('crud.'~crud_name~'.title_delete')|trans({ '%as_string%': 'Aside Activity' }) }}</h1>
|
||||||
{% endblock crud_content_header %}
|
{% endblock crud_content_header %}
|
||||||
@ -27,4 +27,4 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
{{ form_end(form) }}
|
{{ form_end(form) }}
|
||||||
</div>
|
|
||||||
|
@ -39,7 +39,7 @@ class AdminMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 6000,
|
'order' => 6000,
|
||||||
'icons' => ['calendar'],
|
//'icons' => ['calendar'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('Cancel reason', [
|
$menu->addChild('Cancel reason', [
|
||||||
|
@ -39,7 +39,7 @@ class AdminMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 4500,
|
'order' => 4500,
|
||||||
'icons' => ['plus'],
|
//'icons' => ['plus'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('Custom fields group', [
|
$menu->addChild('Custom fields group', [
|
||||||
|
@ -39,7 +39,7 @@ class AdminMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 4000,
|
'order' => 4000,
|
||||||
'icons' => ['file-pdf-o'],
|
//'icons' => ['file-pdf-o'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('Document category list', [
|
$menu->addChild('Document category list', [
|
||||||
|
16
src/Bundle/ChillMainBundle/Controller/ScopeApiController.php
Normal file
16
src/Bundle/ChillMainBundle/Controller/ScopeApiController.php
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Chill\MainBundle\Controller;
|
||||||
|
|
||||||
|
use Chill\MainBundle\CRUD\Controller\ApiController;
|
||||||
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
|
class ScopeApiController extends ApiController
|
||||||
|
{
|
||||||
|
protected function customizeQuery(string $action, Request $request, $query): void
|
||||||
|
{
|
||||||
|
if ('_index' === $action) {
|
||||||
|
$query->andWhere($query->expr()->eq('e.active', "'TRUE'"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -625,6 +625,7 @@ class ChillMainExtension extends Extension implements
|
|||||||
],
|
],
|
||||||
[
|
[
|
||||||
'class' => \Chill\MainBundle\Entity\Scope::class,
|
'class' => \Chill\MainBundle\Entity\Scope::class,
|
||||||
|
'controller' => \Chill\MainBundle\Controller\ScopeApiController::class,
|
||||||
'name' => 'scope',
|
'name' => 'scope',
|
||||||
'base_path' => '/api/1.0/main/scope',
|
'base_path' => '/api/1.0/main/scope',
|
||||||
'base_role' => 'ROLE_USER',
|
'base_role' => 'ROLE_USER',
|
||||||
|
@ -13,6 +13,7 @@ namespace Chill\MainBundle\Form;
|
|||||||
|
|
||||||
use Chill\MainBundle\Form\Type\TranslatableStringFormType;
|
use Chill\MainBundle\Form\Type\TranslatableStringFormType;
|
||||||
use Symfony\Component\Form\AbstractType;
|
use Symfony\Component\Form\AbstractType;
|
||||||
|
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
|
||||||
use Symfony\Component\Form\FormBuilderInterface;
|
use Symfony\Component\Form\FormBuilderInterface;
|
||||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||||
|
|
||||||
@ -21,7 +22,13 @@ class ScopeType extends AbstractType
|
|||||||
public function buildForm(FormBuilderInterface $builder, array $options)
|
public function buildForm(FormBuilderInterface $builder, array $options)
|
||||||
{
|
{
|
||||||
$builder
|
$builder
|
||||||
->add('name', TranslatableStringFormType::class);
|
->add('name', TranslatableStringFormType::class)
|
||||||
|
->add('active', ChoiceType::class, [
|
||||||
|
'choices' => [
|
||||||
|
'Active' => true,
|
||||||
|
'Inactive' => false,
|
||||||
|
]])
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -220,12 +220,8 @@ footer.footer {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
div.admin {
|
div.admin {
|
||||||
flex-direction: row-reverse;
|
|
||||||
div.vertical-menu {
|
div.vertical-menu {
|
||||||
font-size: 0.9em;
|
.list-group-item {}
|
||||||
.list-group-item {
|
|
||||||
padding: 0.3rem 0.7rem;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -367,6 +363,19 @@ div#flashMessages {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// unbullet lists
|
||||||
|
ul.unbullet {
|
||||||
|
list-style-type: none;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
/// libellé
|
||||||
|
span.dt {
|
||||||
|
font-size: 90%;
|
||||||
|
font-weight: bolder;
|
||||||
|
background-color: var(--bs-chill-light-gray);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SPECIFIC RULES
|
* SPECIFIC RULES
|
||||||
*/
|
*/
|
||||||
|
@ -28,10 +28,15 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% block admin_content %}
|
<div class="row justify-content-center">
|
||||||
<!-- block admin content empty -->
|
<div class="col-md-10 col-xxl">
|
||||||
{% endblock %}
|
{% block admin_content %}
|
||||||
|
<!-- block admin content empty -->
|
||||||
|
{% endblock %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
{% block vertical_menu_content %}
|
{% block vertical_menu_content %}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="{% block crud_content_main_div_class %}col-10 centered{% endblock %}">
|
|
||||||
{% block crud_content_header %}
|
{% block crud_content_header %}
|
||||||
<h1>{{ ('crud.'~crud_name~'.title_delete')|trans({ '%as_string%': entity|chill_entity_render_string }) }}</h1>
|
<h1>{{ ('crud.'~crud_name~'.title_delete')|trans({ '%as_string%': entity|chill_entity_render_string }) }}</h1>
|
||||||
{% endblock crud_content_header %}
|
{% endblock crud_content_header %}
|
||||||
@ -34,4 +34,4 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
{{ form_end(form) }}
|
{{ form_end(form) }}
|
||||||
</div>
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{% set formId = crudMainFormId|default('crud_main_form') %}
|
{% set formId = crudMainFormId|default('crud_main_form') %}
|
||||||
<div class="{% block crud_content_main_div_class %}col-10 centered{% endblock %}">
|
|
||||||
{% block crud_content_header %}
|
{% block crud_content_header %}
|
||||||
<h1>{{ ('crud.'~crud_name~'.title_edit')|trans }}</h1>
|
<h1>{{ ('crud.'~crud_name~'.title_edit')|trans }}</h1>
|
||||||
{% endblock crud_content_header %}
|
{% endblock crud_content_header %}
|
||||||
@ -64,4 +64,4 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
<div class="col-10 centered">
|
|
||||||
|
|
||||||
{% block index_header %}
|
{% block index_header %}
|
||||||
<h1>{{ ('crud.' ~ crud_name ~ '.index.title')|trans({'%crud_name%': crud_name}) }}</h1>
|
<h1>{{ ('crud.' ~ crud_name ~ '.index.title')|trans({'%crud_name%': crud_name}) }}</h1>
|
||||||
{% endblock index_header %}
|
{% endblock index_header %}
|
||||||
@ -16,7 +14,7 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% block table_entities %}
|
{% block table_entities %}
|
||||||
<table>
|
<table class="table table-bordered border-dark">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
{% block table_entities_thead_tr %}
|
{% block table_entities_thead_tr %}
|
||||||
@ -54,4 +52,3 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endblock list_actions %}
|
{% endblock list_actions %}
|
||||||
</div>
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{% set formId = crudMainFormId|default('crud_main_form') %}
|
{% set formId = crudMainFormId|default('crud_main_form') %}
|
||||||
<div class="{% block crud_content_main_div_class %}col-10 centered{% endblock %}">
|
|
||||||
{% block crud_content_header %}
|
{% block crud_content_header %}
|
||||||
<h1>{{ ('crud.' ~ crud_name ~ '.title_new')|trans({'%crud_name%' : crud_name }) }}</h1>
|
<h1>{{ ('crud.' ~ crud_name ~ '.title_new')|trans({'%crud_name%' : crud_name }) }}</h1>
|
||||||
{% endblock crud_content_header %}
|
{% endblock crud_content_header %}
|
||||||
@ -52,4 +52,4 @@
|
|||||||
|
|
||||||
{{ form_end(form) }}
|
{{ form_end(form) }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="{% block crud_content_main_div_class %}col-10 centered{% endblock %}">
|
|
||||||
{% block crud_content_header %}
|
{% block crud_content_header %}
|
||||||
<h1>{{ 'crud.%crud_name%.title_view'|trans({'%crud_name%' : crud_name }) }}</h1>
|
<h1>{{ 'crud.%crud_name%.title_view'|trans({'%crud_name%' : crud_name }) }}</h1>
|
||||||
{% endblock crud_content_header %}
|
{% endblock crud_content_header %}
|
||||||
@ -60,4 +60,4 @@
|
|||||||
{% endblock crud_content_view_actions %}
|
{% endblock crud_content_view_actions %}
|
||||||
|
|
||||||
{% endblock crud_content_view %}
|
{% endblock crud_content_view %}
|
||||||
</div>
|
|
||||||
|
@ -7,8 +7,6 @@
|
|||||||
|
|
||||||
{{ form_start(edit_form) }}
|
{{ form_start(edit_form) }}
|
||||||
{{ form_row(edit_form.name) }}
|
{{ form_row(edit_form.name) }}
|
||||||
{{ form_row(edit_form.submit, { 'attr' : { 'class' : 'btn btn-chill-green' } } ) }}
|
|
||||||
{{ form_end(edit_form) }}
|
|
||||||
|
|
||||||
<ul class="record_actions sticky-form-buttons">
|
<ul class="record_actions sticky-form-buttons">
|
||||||
<li class='cancel'>
|
<li class='cancel'>
|
||||||
@ -16,5 +14,10 @@
|
|||||||
{{ 'Back to the list'|trans }}
|
{{ 'Back to the list'|trans }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
{{ form_widget(edit_form.submit, { 'attr' : { 'class' : 'btn btn-update' }}) }}
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
{{ form_end(edit_form) }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,39 +1,50 @@
|
|||||||
{% extends '@ChillMain/Admin/layoutWithVerticalMenu.html.twig' %}
|
{% extends '@ChillMain/CRUD/Admin/index.html.twig' %}
|
||||||
|
|
||||||
{% block title %}{{ 'Center list'|trans }}{% endblock %}
|
{% block title %}{{ 'Center list'|trans }}{% endblock %}
|
||||||
|
|
||||||
{% block admin_content -%}
|
{% block admin_content -%}
|
||||||
<h1>{{ 'Center list'|trans }}</h1>
|
{% embed '@ChillMain/CRUD/_index.html.twig' %}
|
||||||
|
|
||||||
<table class="records_list">
|
{% block index_header %}
|
||||||
<thead>
|
<h1>{{ 'Center list'|trans }}</h1>
|
||||||
<tr>
|
{% endblock %}
|
||||||
<th>{{ 'Name'|trans }}</th>
|
|
||||||
<th>{{ 'Actions'|trans }}</th>
|
{% block filter_order %}{% endblock %}
|
||||||
</tr>
|
|
||||||
</thead>
|
{% block table_entities_thead_tr %}
|
||||||
<tbody>
|
<th>id</th>
|
||||||
{% for entity in entities %}
|
<th>{{ 'Name'|trans }}</th>
|
||||||
<tr>
|
<th>{{ 'Actions'|trans }}</th>
|
||||||
<td>{{ entity.name }}</td>
|
{% endblock %}
|
||||||
<td>
|
|
||||||
<ul class="record_actions">
|
{% block table_entities_tbody %}
|
||||||
<li>
|
{% for entity in entities %}
|
||||||
<a href="{{ path('admin_center_edit', { 'id': entity.id }) }}" class="btn btn-edit">{{ 'edit'|trans }}</a>
|
<tr>
|
||||||
</li>
|
<td>{{ entity.id }}</td>
|
||||||
</ul>
|
<td>{{ entity.name }}</td>
|
||||||
</td>
|
<td>
|
||||||
</tr>
|
<ul class="record_actions">
|
||||||
{% endfor %}
|
<li>
|
||||||
</tbody>
|
<a href="{{ path('admin_center_edit', { 'id': entity.id }) }}" class="btn btn-edit">{{ 'edit'|trans }}</a>
|
||||||
</table>
|
</li>
|
||||||
|
</ul>
|
||||||
<ul class="record_actions sticky-form-buttons">
|
</td>
|
||||||
<li class='cancel'>
|
</tr>
|
||||||
<a href="{{ path('chill_main_admin_central') }}" class="btn btn-cancel">{{'Back to the admin'|trans}}</a>
|
{% endfor %}
|
||||||
</li>
|
{% endblock %}
|
||||||
<li>
|
|
||||||
<a href="{{ path('admin_center_new') }}" class="btn btn-create">{{ 'Create a new center'|trans }}</a>
|
{% block pagination %}{% endblock %}
|
||||||
</li>
|
|
||||||
</ul>
|
{% block list_actions %}
|
||||||
|
<ul class="record_actions sticky-form-buttons">
|
||||||
|
<li class='cancel'>
|
||||||
|
<a href="{{ path('chill_main_admin_central') }}" class="btn btn-cancel">{{'Back to the admin'|trans}}</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="{{ path('admin_center_new') }}" class="btn btn-create">{{ 'Create a new center'|trans }}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
{% endblock list_actions %}
|
||||||
|
|
||||||
|
{% endembed %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -7,8 +7,6 @@
|
|||||||
|
|
||||||
{{ form_start(form) }}
|
{{ form_start(form) }}
|
||||||
{{ form_row(form.name) }}
|
{{ form_row(form.name) }}
|
||||||
{{ form_row(form.submit, { 'attr' : { 'class' : 'btn btn-chill-green' } } ) }}
|
|
||||||
{{ form_end(form) }}
|
|
||||||
|
|
||||||
<ul class="record_actions sticky-form-buttons">
|
<ul class="record_actions sticky-form-buttons">
|
||||||
<li class='cancel'>
|
<li class='cancel'>
|
||||||
@ -16,5 +14,10 @@
|
|||||||
{{ 'Back to the list'|trans }}
|
{{ 'Back to the list'|trans }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
{{ form_widget(form.submit, { 'attr' : { 'class' : 'btn btn-save' }}) }}
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
{{ form_end(form) }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -7,8 +7,7 @@
|
|||||||
|
|
||||||
{{ form_start(edit_form) }}
|
{{ form_start(edit_form) }}
|
||||||
{{ form_row(edit_form.name) }}
|
{{ form_row(edit_form.name) }}
|
||||||
{{ form_row(edit_form.submit, { 'attr' : { 'class' : 'btn btn-chill-green' } } ) }}
|
{{ form_row(edit_form.active) }}
|
||||||
{{ form_end(edit_form) }}
|
|
||||||
|
|
||||||
<ul class="record_actions sticky-form-buttons">
|
<ul class="record_actions sticky-form-buttons">
|
||||||
<li class='cancel'>
|
<li class='cancel'>
|
||||||
@ -16,5 +15,11 @@
|
|||||||
{{ 'Back to the list'|trans }}
|
{{ 'Back to the list'|trans }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
{{ form_widget(edit_form.submit, { 'attr' : { 'class' : 'btn btn-update' }}) }}
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
{{ form_end(edit_form) }}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,39 +1,58 @@
|
|||||||
{% extends '@ChillMain/Admin/layoutWithVerticalMenu.html.twig' %}
|
{% extends '@ChillMain/CRUD/Admin/index.html.twig' %}
|
||||||
|
|
||||||
{% block title %}{{ 'List circles'|trans }}{% endblock %}
|
{% block title %}{{ 'List circles'|trans }}{% endblock %}
|
||||||
|
|
||||||
{% block admin_content -%}
|
{% block admin_content -%}
|
||||||
<h1>{{ 'List circles'|trans }}</h1>
|
{% embed '@ChillMain/CRUD/_index.html.twig' %}
|
||||||
|
|
||||||
|
{% block index_header %}
|
||||||
|
<h1>{{ 'List circles'|trans }}</h1>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block filter_order %}{% endblock %}
|
||||||
|
|
||||||
|
{% block table_entities_thead_tr %}
|
||||||
|
<th>id</th>
|
||||||
|
<th>{{ 'Name'|trans }}</th>
|
||||||
|
<th>{{ 'Active'|trans }}</th>
|
||||||
|
<th>{{ 'Actions'|trans }}</th>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block table_entities_tbody %}
|
||||||
|
{% for entity in entities %}
|
||||||
|
<tr>
|
||||||
|
<td>{{ entity.id }}</td>
|
||||||
|
<td>{{ entity.name|localize_translatable_string }}</td>
|
||||||
|
<td style="text-align:center;">
|
||||||
|
{%- if entity.active -%}
|
||||||
|
<i class="fa fa-check-square-o"></i>
|
||||||
|
{%- else -%}
|
||||||
|
<i class="fa fa-square-o"></i>
|
||||||
|
{%- endif -%}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<ul class="record_actions">
|
||||||
|
<li>
|
||||||
|
<a href="{{ path('admin_scope_edit', { 'id': entity.id }) }}" class="btn btn-edit">{{ 'edit'|trans }}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block pagination %}{% endblock %}
|
||||||
|
|
||||||
|
{% block list_actions %}
|
||||||
|
<ul class="record_actions sticky-form-buttons">
|
||||||
|
<li class='cancel'>
|
||||||
|
<a href="{{ path('chill_main_admin_central') }}" class="btn btn-cancel">{{'Back to the admin'|trans}}</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="{{ path('admin_scope_new') }}" class="btn btn-create">{{ 'Create a new circle'|trans }}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
{% endblock list_actions %}
|
||||||
|
|
||||||
<table class="records_list">
|
{% endembed %}
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>{{ 'Name'|trans }}</th>
|
|
||||||
<th>{{ 'Actions'|trans }}</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{% for entity in entities %}
|
|
||||||
<tr>
|
|
||||||
<td>{{ entity.name|localize_translatable_string }}</td>
|
|
||||||
<td>
|
|
||||||
<ul class="record_actions">
|
|
||||||
<li>
|
|
||||||
<a href="{{ path('admin_scope_edit', { 'id': entity.id }) }}" class="btn btn-edit">{{ 'edit'|trans }}</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{% endfor %}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<ul class="record_actions sticky-form-buttons">
|
|
||||||
<li class='cancel'>
|
|
||||||
<a href="{{ path('chill_main_admin_central') }}" class="btn btn-cancel">{{'Back to the admin'|trans}}</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="{{ path('admin_scope_new') }}" class="btn btn-create">{{ 'Create a new circle'|trans }}</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -7,8 +7,7 @@
|
|||||||
|
|
||||||
{{ form_start(form) }}
|
{{ form_start(form) }}
|
||||||
{{ form_row(form.name) }}
|
{{ form_row(form.name) }}
|
||||||
{{ form_row(form.submit, { 'attr' : { 'class' : 'btn btn-chill-green' } } ) }}
|
{{ form_row(form.active) }}
|
||||||
{{ form_end(form) }}
|
|
||||||
|
|
||||||
<ul class="record_actions sticky-form-buttons">
|
<ul class="record_actions sticky-form-buttons">
|
||||||
<li class='cancel'>
|
<li class='cancel'>
|
||||||
@ -16,5 +15,9 @@
|
|||||||
{{ 'Back to the list'|trans }}
|
{{ 'Back to the list'|trans }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
{{ form_widget(form.submit, { 'attr' : { 'class' : 'btn btn-save' }}) }}
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
{{ form_end(form) }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,83 +1,99 @@
|
|||||||
{% extends '@ChillMain/Admin/layoutWithVerticalMenu.html.twig' %}
|
{% extends '@ChillMain/CRUD/Admin/index.html.twig' %}
|
||||||
|
|
||||||
{% block admin_content %}
|
{% block admin_content %}
|
||||||
|
{% embed '@ChillMain/CRUD/_index.html.twig' %}
|
||||||
<h1>{{"Users"|trans}}</h1>
|
|
||||||
|
{% block index_header %}
|
||||||
{{ filter_order|chill_render_filter_order_helper }}
|
<h1>{{"Users"|trans}}</h1>
|
||||||
|
{% endblock %}
|
||||||
{% for entity in entities %}
|
|
||||||
<div class="flex-table">
|
{% block filter_order %}{{ filter_order|chill_render_filter_order_helper }}{% endblock %}
|
||||||
<div class="item-bloc">
|
|
||||||
<div class="item-row">
|
{% block table_entities_thead_tr %}
|
||||||
<div class="item-col">
|
<th>{{ 'Active'|trans }}</th>
|
||||||
{% if entity.civility is not null %}
|
<th>{{ 'Username'|trans }}</th>
|
||||||
{% if entity.civility.name|length > 0 %}
|
<th>{{ 'Datas'|trans }}</th>
|
||||||
{{ entity.civility.name|first }}
|
<th>{{ 'Actions'|trans }}</th>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block table_entities_tbody %}
|
||||||
|
{% for entity in entities %}
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
{% if entity.isEnabled %}
|
||||||
|
<i class="fa fa-check-square-o"></i>
|
||||||
|
{% else %}
|
||||||
|
<i class="fa fa-square-o"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
</td>
|
||||||
{{ entity.label }}
|
<td>
|
||||||
{% if entity.isEnabled %}
|
{#
|
||||||
<i class="fa fa-check chill-green"></i>
|
{% if entity.civility is not null %}
|
||||||
{% else %}
|
{% if entity.civility.name|length > 0 %}
|
||||||
<i class="fa fa-times chill-red"></i>
|
{{ entity.civility.name|first }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
{% endif %}
|
||||||
<div class="item-col"><i>{{ entity.email }}</i></div>
|
#}
|
||||||
</div>
|
{{ entity.label }}
|
||||||
<div class="item-row">
|
</td>
|
||||||
<div class="item-col">
|
<td>
|
||||||
login: {{ entity.username|e('html_attr') }}
|
<ul class="unbullet">
|
||||||
</div>
|
<li>
|
||||||
<div class="item-col">
|
<span class="dt">login:</span>
|
||||||
{% if entity.userJob %}
|
{{ entity.username|e('html_attr') }}
|
||||||
{{ entity.userJob.label|localize_translatable_string }}
|
</li>
|
||||||
{% endif %}
|
<li>
|
||||||
</div>
|
<span class="dt">email:</span>
|
||||||
</div>
|
{{ entity.email }}
|
||||||
<div class="item-row">
|
</li>
|
||||||
<div class="item-col">
|
<li>
|
||||||
{% if entity.mainScope %}
|
<span class="dt">métier:</span>
|
||||||
{{ entity.mainScope.name|localize_translatable_string }}
|
{% if entity.userJob %}{{ entity.userJob.label|localize_translatable_string }}{% endif %}
|
||||||
{% endif %}
|
</li>
|
||||||
{% if entity.mainCenter %}
|
<li>
|
||||||
, {{ entity.mainCenter.name }}
|
<span class="dt">cercle/centre:</span>
|
||||||
{% endif %}
|
{% if entity.mainScope %}
|
||||||
</div>
|
{{ entity.mainScope.name|localize_translatable_string }}
|
||||||
</div>
|
{% endif %}
|
||||||
<div class="item-row">
|
{% if entity.mainCenter %}, {{ entity.mainCenter.name }}{% endif %}
|
||||||
<ul class="record_actions">
|
</li>
|
||||||
<li>
|
</ul>
|
||||||
<a class="btn btn-edit" href="{{ path('chill_crud_admin_user_edit', { 'id': entity.id }) }}"></a>
|
</td>
|
||||||
</li>
|
<td>
|
||||||
|
<ul class="record_actions">
|
||||||
{% if allow_change_password is same as(true) %}
|
<li>
|
||||||
<li>
|
<a class="btn btn-edit" title="{{ 'Edit'|trans }}" href="{{ path('chill_crud_admin_user_edit', { 'id': entity.id }) }}"></a>
|
||||||
<a class="btn btn-chill-red" href="{{ path('admin_user_edit_password', { 'id' : entity.id }) }}" title="{{ 'Edit password'|trans|e('html_attr') }}"><i class="fa fa-ellipsis-h"></i></a>
|
</li>
|
||||||
</li>
|
|
||||||
{% endif %}
|
{% if allow_change_password is same as(true) %}
|
||||||
|
<li>
|
||||||
{% if is_granted('ROLE_ALLOWED_TO_SWITCH') %}
|
<a class="btn btn-chill-red" href="{{ path('admin_user_edit_password', { 'id' : entity.id }) }}" title="{{ 'Edit password'|trans|e('html_attr') }}"><i class="fa fa-ellipsis-h"></i></a>
|
||||||
<li>
|
</li>
|
||||||
<a class="btn btn-chill-blue" href="{{ path('chill_main_homepage', {'_switch_user': entity.username }) }}" title="{{ "Impersonate"|trans|e('html_attr') }}"><i class="fa fa-user-secret"></i></a>
|
{% endif %}
|
||||||
</li>
|
|
||||||
{% endif %}
|
{% if is_granted('ROLE_ALLOWED_TO_SWITCH') %}
|
||||||
</ul>
|
<li>
|
||||||
</div>
|
<a class="btn btn-chill-blue" href="{{ path('chill_main_homepage', {'_switch_user': entity.username }) }}" title="{{ "Impersonate"|trans|e('html_attr') }}"><i class="fa fa-user-secret"></i></a>
|
||||||
</div>
|
</li>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</ul>
|
||||||
{% endfor %}
|
</td>
|
||||||
|
</tr>
|
||||||
{{ chill_pagination(paginator) }}
|
{% endfor %}
|
||||||
|
{% endblock %}
|
||||||
<ul class="record_actions sticky-form-buttons">
|
|
||||||
<li class='cancel'>
|
{% block pagination %}{{ chill_pagination(paginator) }}{% endblock %}
|
||||||
<a href="{{ path('chill_main_admin_central') }}" class="btn btn-cancel">{{'Back to the admin'|trans}}</a>
|
|
||||||
</li>
|
{% block list_actions %}
|
||||||
<li>
|
<ul class="record_actions sticky-form-buttons">
|
||||||
<a href="{{ path('chill_crud_admin_user_new') }}" class="btn btn-create">{{ 'Create'|trans }}</a>
|
<li class='cancel'>
|
||||||
</li>
|
<a href="{{ path('chill_main_admin_central') }}" class="btn btn-cancel">{{'Back to the admin'|trans}}</a>
|
||||||
</ul>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="{{ path('chill_crud_admin_user_new') }}" class="btn btn-create">{{ 'Create'|trans }}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
{% endblock list_actions %}
|
||||||
|
|
||||||
|
{% endembed %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -2,12 +2,14 @@
|
|||||||
|
|
||||||
{% block admin_content %}
|
{% block admin_content %}
|
||||||
{% embed '@ChillMain/CRUD/_index.html.twig' %}
|
{% embed '@ChillMain/CRUD/_index.html.twig' %}
|
||||||
|
|
||||||
{% block table_entities_thead_tr %}
|
{% block table_entities_thead_tr %}
|
||||||
<th>id</th>
|
<th>id</th>
|
||||||
<th>{{ 'label'|trans }}</th>
|
<th>{{ 'Label'|trans }}</th>
|
||||||
<th>{{ 'active'|trans }}</th>
|
<th>{{ 'Active'|trans }}</th>
|
||||||
<th> </th>
|
<th>{{ 'Actions'|trans }}</th>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block table_entities_tbody %}
|
{% block table_entities_tbody %}
|
||||||
{% for entity in entities %}
|
{% for entity in entities %}
|
||||||
<tr>
|
<tr>
|
||||||
@ -30,11 +32,12 @@
|
|||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block actions_before %}
|
{% block actions_before %}
|
||||||
<li class='cancel'>
|
<li class='cancel'>
|
||||||
<a href="{{ path('chill_main_admin_central') }}" class="btn btn-cancel">{{'Back to the admin'|trans}}</a>
|
<a href="{{ path('chill_main_admin_central') }}" class="btn btn-cancel">{{'Back to the admin'|trans}}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% endembed %}
|
{% endembed %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -40,7 +40,7 @@ class AdminLanguageMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 1200,
|
'order' => 1200,
|
||||||
'icons' => ['globe-w'],
|
//'icons' => ['globe-w'],
|
||||||
]);
|
]);
|
||||||
$menu->addChild('Language list', [
|
$menu->addChild('Language list', [
|
||||||
'route' => 'chill_crud_main_language_index',
|
'route' => 'chill_crud_main_language_index',
|
||||||
|
@ -40,7 +40,7 @@ class AdminLocationMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 1300,
|
'order' => 1300,
|
||||||
'icons' => ['map-marker'],
|
//'icons' => ['map-marker'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('Location type list', [
|
$menu->addChild('Location type list', [
|
||||||
|
@ -46,7 +46,7 @@ class AdminUserMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 1000,
|
'order' => 1000,
|
||||||
'icons' => ['key'],
|
//'icons' => ['key'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('Center list', [
|
$menu->addChild('Center list', [
|
||||||
|
@ -39,7 +39,7 @@ class AdminAccompanyingCourseMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 2200,
|
'order' => 2200,
|
||||||
'icons' => ['random'],
|
//'icons' => ['random'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('person_admin.closing motives', [
|
$menu->addChild('person_admin.closing motives', [
|
||||||
|
@ -39,7 +39,7 @@ class AdminHouseholdMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 2100,
|
'order' => 2100,
|
||||||
'icons' => ['home'],
|
//'icons' => ['home'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('Position', [
|
$menu->addChild('Position', [
|
||||||
|
@ -39,7 +39,7 @@ class AdminPersonMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 2000,
|
'order' => 2000,
|
||||||
'icons' => ['child'],
|
//'icons' => ['child'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('Civility', [
|
$menu->addChild('Civility', [
|
||||||
|
@ -39,7 +39,7 @@ class AdminSocialWorkMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 2300,
|
'order' => 2300,
|
||||||
'icons' => ['handshake-o'],
|
//'icons' => ['handshake-o'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('person_admin.social_action', [
|
$menu->addChild('person_admin.social_action', [
|
||||||
|
@ -39,7 +39,7 @@ class AdminMenuBuilder implements LocalMenuBuilderInterface
|
|||||||
->setAttribute('class', 'list-group-item-header')
|
->setAttribute('class', 'list-group-item-header')
|
||||||
->setExtras([
|
->setExtras([
|
||||||
'order' => 3000,
|
'order' => 3000,
|
||||||
'icons' => ['male'],
|
//'icons' => ['male'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$menu->addChild('Third party category', [
|
$menu->addChild('Third party category', [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user