mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
fixed events width
This commit is contained in:
parent
cb70c322a4
commit
46c647cbb7
@ -1,18 +1,11 @@
|
|||||||
{% extends '@ChillEvent/layout.html.twig' %}
|
{% extends '@ChillEvent/layout.html.twig' %} {% block js %}
|
||||||
|
{{ encore_entry_script_tags("mod_async_upload") }}
|
||||||
{% block js %}
|
{% endblock %} {% block css %}
|
||||||
{{ encore_entry_script_tags('mod_async_upload') }}
|
{{ encore_entry_link_tags("mod_async_upload") }}
|
||||||
{% endblock %}
|
{% endblock %} {% block title 'Event creation'|trans %} {% block event_content
|
||||||
|
-%}
|
||||||
{% block css %}
|
|
||||||
{{ encore_entry_link_tags('mod_async_upload') }}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block title 'Event creation'|trans %}
|
|
||||||
|
|
||||||
{% block event_content -%}
|
|
||||||
<div class="col-10">
|
<div class="col-10">
|
||||||
<h1>{{ 'Event creation'|trans }}</h1>
|
<h1>{{ "Event creation" | trans }}</h1>
|
||||||
|
|
||||||
{{ form_start(form) }}
|
{{ form_start(form) }}
|
||||||
{{ form_errors(form) }}
|
{{ form_errors(form) }}
|
||||||
@ -20,7 +13,7 @@
|
|||||||
{{ form_row(form.name) }}
|
{{ form_row(form.name) }}
|
||||||
{{ form_row(form.date) }}
|
{{ form_row(form.date) }}
|
||||||
|
|
||||||
{{ form_row(form.type, { 'label': 'Event type' }) }}
|
{{ form_row(form.type, { label: "Event type" }) }}
|
||||||
{{ form_row(form.moderator) }}
|
{{ form_row(form.moderator) }}
|
||||||
{{ form_row(form.location) }}
|
{{ form_row(form.location) }}
|
||||||
{{ form_row(form.organizationCost) }}
|
{{ form_row(form.organizationCost) }}
|
||||||
@ -30,12 +23,17 @@
|
|||||||
|
|
||||||
<ul class="record_actions sticky-form-buttons">
|
<ul class="record_actions sticky-form-buttons">
|
||||||
<li class="cancel">
|
<li class="cancel">
|
||||||
<a href="{{ path('chill_event_list_most_recent') }}" class="btn btn-cancel">
|
<a
|
||||||
{{ 'Back to the most recent events'|trans }}
|
href="{{ path('chill_event_list_most_recent') }}"
|
||||||
|
class="btn btn-cancel"
|
||||||
|
>
|
||||||
|
{{ "Back to the most recent events" | trans }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
{{ form_widget(form.submit, { 'attr' : { 'class' : 'btn btn-create' } }) }}
|
{{
|
||||||
|
form_widget(form.submit, { attr: { class: "btn btn-create" } })
|
||||||
|
}}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@ -1,92 +1,126 @@
|
|||||||
{% extends '@ChillEvent/layout.html.twig' %}
|
{% extends '@ChillEvent/layout.html.twig' %} {% block title 'Events'|trans %} {%
|
||||||
|
block js %}
|
||||||
|
{{ parent() }}
|
||||||
|
{{ encore_entry_script_tags("mod_pickentity_type") }}
|
||||||
|
{% endblock %} {% block css %}
|
||||||
|
{{ parent() }}
|
||||||
|
{{ encore_entry_link_tags("mod_pickentity_type") }}
|
||||||
|
{% endblock %} {% block content %}
|
||||||
|
<div class="col-10">
|
||||||
|
<h1>{{ block("title") }}</h1>
|
||||||
|
|
||||||
{% block title 'Events'|trans %}
|
{{ filter | chill_render_filter_order_helper }}
|
||||||
|
|
||||||
{% block js %}
|
{# {% if is_granted('CHILL_EVENT_CREATE') %} #}
|
||||||
{{ parent() }}
|
<ul class="record_actions">
|
||||||
{{ encore_entry_script_tags('mod_pickentity_type') }}
|
<li>
|
||||||
{% endblock %}
|
<a
|
||||||
|
class="btn btn-create"
|
||||||
{% block css %}
|
href="{{
|
||||||
{{ parent() }}
|
chill_path_add_return_path(
|
||||||
{{ encore_entry_link_tags('mod_pickentity_type') }}
|
'chill_event__event_new_pickcenter'
|
||||||
{% endblock %}
|
)
|
||||||
|
}}"
|
||||||
{% block content %}
|
>{{ "Add an event" | trans }}</a
|
||||||
<h1>{{ block('title') }}</h1>
|
>
|
||||||
|
</li>
|
||||||
{{ filter|chill_render_filter_order_helper }}
|
</ul>
|
||||||
|
{# {% endif %} #} {% if events|length > 0 %}
|
||||||
{# {% if is_granted('CHILL_EVENT_CREATE') %} #}
|
<div class="flex-table">
|
||||||
<ul class="record_actions">
|
{% for e in events %}
|
||||||
<li><a class="btn btn-create" href="{{ chill_path_add_return_path('chill_event__event_new_pickcenter') }}">{{ 'Add an event'|trans }}</a></li>
|
<div class="item-bloc">
|
||||||
</ul>
|
<div class="item-row">
|
||||||
{# {% endif %} #}
|
<div class="item-col">
|
||||||
{% if events|length > 0 %}
|
<div class="denomination h2">
|
||||||
<div class="flex-table">
|
{{ e.name }}
|
||||||
{% for e in events %}
|
|
||||||
<div class="item-bloc">
|
|
||||||
<div class="item-row">
|
|
||||||
<div class="item-col">
|
|
||||||
<div class="denomination h2">
|
|
||||||
{{ e.name }}
|
|
||||||
</div>
|
|
||||||
<p>{{ e.type.name|localize_translatable_string }}</p>
|
|
||||||
{% if e.moderator is not null %}
|
|
||||||
<p>{{ 'Moderator'|trans }}: {{ e.moderator|chill_entity_render_box }}</p>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
<div class="item-col">
|
|
||||||
<div class="container" style="text-align: right;">
|
|
||||||
<p>{{ e.date|format_datetime('medium', 'medium') }}</p>
|
|
||||||
<p>{{ 'count participations to this event'|trans({'count': e.participations|length}) }}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
{% if e.participations|length > 0 %}
|
<p>{{ e.type.name | localize_translatable_string }}</p>
|
||||||
<div class="item-row separator">
|
{% if e.moderator is not null %}
|
||||||
<strong>{{ 'Participations'|trans }} : </strong>
|
<p>
|
||||||
{% for part in e.participations|slice(0, 20) %}
|
{{ "Moderator" | trans }}:
|
||||||
{% include '@ChillMain/OnTheFly/_insert_vue_onthefly.html.twig' with {
|
{{ e.moderator | chill_entity_render_box }}
|
||||||
targetEntity: { name: 'person', id: part.person.id },
|
</p>
|
||||||
action: 'show',
|
|
||||||
displayBadge: true,
|
|
||||||
buttonText: part.person|chill_entity_render_string,
|
|
||||||
isDead: part.person.deathdate is not null
|
|
||||||
} %}
|
|
||||||
{% endfor %}
|
|
||||||
{% if e.participations|length > 20 %}
|
|
||||||
{{ 'events.and_other_count_participants'|trans({'count': e.participations|length - 20}) }}
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="item-row">
|
</div>
|
||||||
<div class="item-col">
|
<div class="item-col">
|
||||||
{{ form_start(eventForms[e.id]) }}
|
<div class="container" style="text-align: right">
|
||||||
{{ form_widget(eventForms[e.id].person_id) }}
|
<p>{{ e.date|format_datetime('medium', 'medium') }}</p>
|
||||||
{{ form_end(eventForms[e.id]) }}
|
<p>
|
||||||
</div>
|
{{ 'count participations to this event'|trans({'count': e.participations|length}) }}
|
||||||
</div>
|
</p>
|
||||||
<div class="item-row separator">
|
|
||||||
<div class="item-col item-meta">
|
|
||||||
</div>
|
|
||||||
<div class="item-col">
|
|
||||||
<ul class="record_actions">
|
|
||||||
{% if is_granted('CHILL_EVENT_UPDATE', e) %}
|
|
||||||
<li><a href="{{ chill_path_add_return_path('chill_event__event_delete', {'event_id': e.id}) }}" class="btn btn-delete"></a></li>
|
|
||||||
{% endif %}
|
|
||||||
{% if is_granted('CHILL_EVENT_UPDATE', e) %}
|
|
||||||
<li><a href="{{ chill_path_add_return_path('chill_event__event_edit', {'event_id': e.id}) }}" class="btn btn-edit"></a></li>
|
|
||||||
{% endif %}
|
|
||||||
<li><a href="{{ chill_path_add_return_path('chill_event__event_show', {'event_id': e.id}) }}" class="btn btn-show"></a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
</div>
|
||||||
|
{% if e.participations|length > 0 %}
|
||||||
|
<div class="item-row separator">
|
||||||
|
<strong>{{ "Participations" | trans }} : </strong>
|
||||||
|
{% for part in e.participations|slice(0, 20) %} {% include
|
||||||
|
'@ChillMain/OnTheFly/_insert_vue_onthefly.html.twig' with {
|
||||||
|
targetEntity: { name: 'person', id: part.person.id }, action:
|
||||||
|
'show', displayBadge: true, buttonText:
|
||||||
|
part.person|chill_entity_render_string, isDead:
|
||||||
|
part.person.deathdate is not null } %} {% endfor %} {% if
|
||||||
|
e.participations|length > 20 %}
|
||||||
|
{{ 'events.and_other_count_participants'|trans({'count': e.participations|length - 20}) }}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
<div class="item-row">
|
||||||
|
<div class="item-col">
|
||||||
|
{{ form_start(eventForms[e.id]) }}
|
||||||
|
{{ form_widget(eventForms[e.id].person_id) }}
|
||||||
|
{{ form_end(eventForms[e.id]) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="item-row separator">
|
||||||
|
<div class="item-col item-meta"></div>
|
||||||
|
<div class="item-col">
|
||||||
|
<ul class="record_actions">
|
||||||
|
{% if is_granted('CHILL_EVENT_UPDATE', e) %}
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="{{
|
||||||
|
chill_path_add_return_path(
|
||||||
|
'chill_event__event_delete',
|
||||||
|
{ event_id: e.id }
|
||||||
|
)
|
||||||
|
}}"
|
||||||
|
class="btn btn-delete"
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
{% endif %} {% if is_granted('CHILL_EVENT_UPDATE', e) %}
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="{{
|
||||||
|
chill_path_add_return_path(
|
||||||
|
'chill_event__event_edit',
|
||||||
|
{ event_id: e.id }
|
||||||
|
)
|
||||||
|
}}"
|
||||||
|
class="btn btn-edit"
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="{{
|
||||||
|
chill_path_add_return_path(
|
||||||
|
'chill_event__event_show',
|
||||||
|
{ event_id: e.id }
|
||||||
|
)
|
||||||
|
}}"
|
||||||
|
class="btn btn-show"
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
{{ chill_pagination(pagination) }}
|
{{ chill_pagination(pagination) }}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user