You are here

calendar-month-multiple-entity.html.twig in Calendar 8

Template to display a summary of the days items as a calendar month entity.

Available variables:

See also

template_preprocess_calendar_month_multiple_entity.

File

templates/calendar-month-multiple-entity.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Template to display a summary of the days items as a calendar month entity.
  5. *
  6. * Available variables:
  7. *
  8. * @see template_preprocess_calendar_month_multiple_entity.
  9. *
  10. * @ingroup themeable
  11. */
  12. #}
  13. 1
  14. <div class="view-item view-item-{{ view.name }}>">
  15. <div class="calendar monthview" id="{{ curday }}">
  16. {% for id in ids %}
  17. {% if view.styleInfo.maxItemsStyle is not 'more' %}
  18. - <!-- theme('calendar_stripe_stripe', $id); ?>-->
  19. {% endif %}
  20. {% endfor %}
  21. <div class="view-item">
  22. {% if view.styleInfo.maxItemsStyle is not 'more' %}
  23. <div class="multiple-events">
  24. <!--<?php // @FIXME
  25. // l() expects a Url object, created from a route name or external URI.
  26. // print l(t('Click to see all @count events', ['@count' => $count]), $link)
  27. ?>-->multiple-events
  28. </div>
  29. </div>
  30. {% else %}
  31. <!--<div class="calendar-more"><?php // @FIXME
  32. // l() expects a Url object, created from a route name or external URI.
  33. // print l(t('more'), $link)
  34. ?></div>-->calendar-more
  35. {% endif %}
  36. </div>
  37. </div>