You are here

content-calendar-legend.html.twig in Content Planner 8

<div class="legend">
  <h3>{{ "Legend"|t }}</h3>

  <ul class="explanations">
    {% for entity_key, content_type_entity in content_type_configs %}

      <li>
        <span class="content-calendar-item-preview" style="border: 2px solid {{ content_type_entity.color }}">&nbsp;</span>
        <span class="label">= {{ content_type_entity.label }}
          (<a href="{{ path('entity.content_type_config.edit_form', {'content_type_config': entity_key}) }}?destination={{ path('content_calendar.calendar') }}">{{ "Configure" }}</a>)
          </span>
      </li>

    {% endfor %}
  </ul>
</div>

File

modules/content_calendar/templates/content-calendar-legend.html.twig
View source
  1. <div class="legend">
  2. <h3>{{ "Legend"|t }}</h3>
  3. <ul class="explanations">
  4. {% for entity_key, content_type_entity in content_type_configs %}
  5. <li>
  6. <span class="content-calendar-item-preview" style="border: 2px solid {{ content_type_entity.color }}">&nbsp;</span>
  7. <span class="label">= {{ content_type_entity.label }}
  8. (<a href="{{ path('entity.content_type_config.edit_form', {'content_type_config': entity_key}) }}?destination={{ path('content_calendar.calendar') }}">{{ "Configure" }}</a>)
  9. </span>
  10. </li>
  11. {% endfor %}
  12. </ul>
  13. </div>