10 lines
354 B
Twig
10 lines
354 B
Twig
{#
|
|
calendar_event.twig - Событие календаря для сделки
|
|
#}
|
|
<a href="{{ site_url('/crm/deals/' ~ event.id) }}"
|
|
class="calendar-event"
|
|
style="border-left-color: {{ event.stage_color|default('#6B7280') }}"
|
|
title="{{ event.title }}">
|
|
{{ event.title|length > 15 ? event.title|slice(0, 15) ~ '...' : event.title }}
|
|
</a>
|