mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
add sms on calendar list
This commit is contained in:
parent
18be028a87
commit
014e281d13
@ -175,7 +175,7 @@ class Calendar implements TrackCreationInterface, TrackUpdateInterface
|
|||||||
/**
|
/**
|
||||||
* @ORM\Column(type="boolean", nullable=true)
|
* @ORM\Column(type="boolean", nullable=true)
|
||||||
*/
|
*/
|
||||||
private ?bool $sendSMS = null;
|
private ?bool $sendSMS = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\Column(type="text", nullable=false, options={"default": Calendar::SMS_PENDING})
|
* @ORM\Column(type="text", nullable=false, options={"default": Calendar::SMS_PENDING})
|
||||||
|
@ -78,7 +78,6 @@ class CalendarType extends AbstractType
|
|||||||
// },
|
// },
|
||||||
// ])
|
// ])
|
||||||
->add('sendSMS', ChoiceType::class, [
|
->add('sendSMS', ChoiceType::class, [
|
||||||
'required' => false,
|
|
||||||
'choices' => [
|
'choices' => [
|
||||||
'Oui' => true,
|
'Oui' => true,
|
||||||
'Non' => false,
|
'Non' => false,
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
<p class="date-label">{{ calendar.startDate|format_datetime('short', 'short') }} - {{ calendar.endDate|format_datetime('none', 'short') }}</p>
|
<p class="date-label">{{ calendar.startDate|format_datetime('short', 'short') }} - {{ calendar.endDate|format_datetime('none', 'short') }}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="duration">
|
<div class="duration short-message">
|
||||||
<p>
|
<p>
|
||||||
<i class="fa fa-fw fa-hourglass-end"></i>
|
<i class="fa fa-fw fa-hourglass-end"></i>
|
||||||
{{ calendar.duration|date('%H:%I')}}
|
{{ calendar.duration|date('%H:%I')}}
|
||||||
@ -103,6 +103,27 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="item-row separator">
|
<div class="item-row separator">
|
||||||
|
<div>
|
||||||
|
{% if false == calendar.sendSMS or null == calendar.sendSMS %}
|
||||||
|
<span title="{{ 'Will not send SMS'|trans }}" class="fa-stack">
|
||||||
|
<i class="fa fa-envelope fa-stack-1x"></i>
|
||||||
|
<i class="fa fa-ban text-danger fa-stack-2x"></i>
|
||||||
|
</span>
|
||||||
|
{% else %}
|
||||||
|
{% if calendar.smsStatus == 'sms_sent' %}
|
||||||
|
<span title="{{ 'SMS already sent'|trans }}">
|
||||||
|
<i class="fa fa-envelope"></i>
|
||||||
|
<i class="fa fa-check"></i>
|
||||||
|
</span>
|
||||||
|
{% else %}
|
||||||
|
<span title="{{ 'Will send SMS'|trans }}">
|
||||||
|
<i class="fa fa-bell"></i>
|
||||||
|
<i class="fa fa-envelope"></i>
|
||||||
|
</span>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
<ul class="record_actions">
|
<ul class="record_actions">
|
||||||
{% if (calendar.isInvited(app.user)) %}
|
{% if (calendar.isInvited(app.user)) %}
|
||||||
{% set invite = calendar.inviteForUser(app.user) %}
|
{% set invite = calendar.inviteForUser(app.user) %}
|
||||||
@ -110,21 +131,23 @@
|
|||||||
<div invite-answer data-status="{{ invite.status|e('html_attr') }}" data-calendar-id="{{ calendar.id|e('html_attr') }}"></div>
|
<div invite-answer data-status="{{ invite.status|e('html_attr') }}" data-calendar-id="{{ calendar.id|e('html_attr') }}"></div>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if false %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ path('chill_calendar_calendar_show', { 'id': calendar.id, 'user_id': user_id, 'accompanying_period_id': accompanying_course_id }) }}" class="btn btn-show "></a>
|
<a href="{{ chill_path_add_return_path('chill_calendar_calendar_show', { 'id': calendar.id, 'user_id': user_id, 'accompanying_period_id': accompanying_course_id }) }}" class="btn btn-show "></a>
|
||||||
</li>
|
</li>
|
||||||
|
{% endif %}
|
||||||
{# TOOD
|
{# TOOD
|
||||||
{% if is_granted('CHILL_ACTIVITY_UPDATE', calendar) %}
|
{% if is_granted('CHILL_ACTIVITY_UPDATE', calendar) %}
|
||||||
#}
|
#}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ path('chill_calendar_calendar_edit', { 'id': calendar.id, 'user_id': user_id, 'accompanying_period_id': accompanying_course_id }) }}" class="btn btn-update "></a>
|
<a href="{{ chill_path_add_return_path('chill_calendar_calendar_edit', { 'id': calendar.id, 'user_id': user_id, 'accompanying_period_id': accompanying_course_id }) }}" class="btn btn-update "></a>
|
||||||
</li>
|
</li>
|
||||||
{# TOOD
|
{# TOOD
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if is_granted('CHILL_ACTIVITY_DELETE', calendar) %}
|
{% if is_granted('CHILL_ACTIVITY_DELETE', calendar) %}
|
||||||
#}
|
#}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ path('chill_calendar_calendar_delete', { 'id': calendar.id, 'user_id' : user_id, 'accompanying_period_id': accompanying_course_id } ) }}" class="btn btn-delete "></a>
|
<a href="{{ chill_path_add_return_path('chill_calendar_calendar_delete', { 'id': calendar.id, 'user_id' : user_id, 'accompanying_period_id': accompanying_course_id } ) }}" class="btn btn-delete "></a>
|
||||||
</li>
|
</li>
|
||||||
{#
|
{#
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -1,4 +1,13 @@
|
|||||||
<h1>{{ "Calendar"|trans }}</h1>
|
<h1>{{ "Calendar"|trans }}</h1>
|
||||||
|
<h2>
|
||||||
|
{% if entity.endDate.diff(entity.startDate).days >= 1 %}
|
||||||
|
{{ "From the day"|trans }} {{ entity.startDate|format_datetime('medium', 'short') }}
|
||||||
|
{{ "to the day"|trans }} {{ entity.endDate|format_datetime('medium', 'short') }}
|
||||||
|
{% else %}
|
||||||
|
{{ entity.startDate|format_date('full') }},
|
||||||
|
{{ entity.startDate|format_datetime('none', 'short', locale='fr') }} - {{ entity.endDate|format_datetime('none', 'short', locale='fr') }}
|
||||||
|
{% endif %}
|
||||||
|
</h2>
|
||||||
|
|
||||||
<dl class="chill_view_data">
|
<dl class="chill_view_data">
|
||||||
<dt class="inline">{{ 'main user concerned'|trans }}</dt>
|
<dt class="inline">{{ 'main user concerned'|trans }}</dt>
|
||||||
@ -6,7 +15,7 @@
|
|||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
<h2 class="chill-red">{{ 'Concerned groups'|trans }}</h2>
|
<h2 class="chill-red">{{ 'Concerned groups'|trans }}</h2>
|
||||||
{% include 'ChillActivityBundle:Activity:concernedGroups.html.twig' with {'context': context, 'render': 'bloc' } %}
|
{% include 'ChillActivityBundle:Activity:concernedGroups.html.twig' with {'context': 'calendar_' ~ context, 'render': 'bloc' } %}
|
||||||
|
|
||||||
|
|
||||||
<h2 class="chill-red">{{ 'Calendar data'|trans }}</h2>
|
<h2 class="chill-red">{{ 'Calendar data'|trans }}</h2>
|
||||||
@ -79,8 +88,8 @@
|
|||||||
|
|
||||||
<ul class="record_actions sticky-form-buttons">
|
<ul class="record_actions sticky-form-buttons">
|
||||||
<li class="cancel">
|
<li class="cancel">
|
||||||
<a class="btn btn-cancel" href="{{ path('chill_calendar_calendar_list',
|
<a class="btn btn-cancel" href="{{ chill_return_path_or('chill_calendar_calendar_list_by_period',
|
||||||
{ 'accompanying_period_id': accompanying_course_id, 'user_id': user_id }) }}">
|
{ 'id': accompanying_course_id }) }}">
|
||||||
{{ 'Back to the list'|trans }}
|
{{ 'Back to the list'|trans }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -26,6 +26,9 @@ The calendar item has been successfully removed.: Le rendez-vous a été supprim
|
|||||||
From the day: Du
|
From the day: Du
|
||||||
to the day: au
|
to the day: au
|
||||||
Transform to activity: Transformer en échange
|
Transform to activity: Transformer en échange
|
||||||
|
Will send SMS: Un SMS de rappel sera envoyé
|
||||||
|
Will not send SMS: Aucun SMS de rappel ne sera envoyé
|
||||||
|
SMS already sent: Un SMS a été envoyé
|
||||||
|
|
||||||
canceledBy: supprimé par
|
canceledBy: supprimé par
|
||||||
Canceled by: supprimé par
|
Canceled by: supprimé par
|
||||||
|
Loading…
x
Reference in New Issue
Block a user