mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
11 lines
380 B
HTML
11 lines
380 B
HTML
{% extends "layout.html" %}
|
|
{% from "_macros.html" import render_event_props_seo %}
|
|
{%- block title -%}
|
|
{{ event.name }}
|
|
{%- endblock -%}
|
|
{% block content_container_attribs %}{% endblock %}
|
|
{% block content %}
|
|
|
|
{{ render_event_props_seo(event, event.start, event.end, dates, user_rights['can_update_event'], user_rights=user_rights, share_links=share_links) }}
|
|
|
|
{% endblock %} |