{% set page_group = "admin" %} {% include 'components/head.html' %} {# Meta tags for JS access #} {# SweetAlert for notifications #} {# Event Management CSS #}
{% include 'components/nav-account.html' %}
{% include 'components/alerts.html' %}
{# Step Indicator #}
1
Source Info
2
New Dates
3
Review
{# Wizard Content #}
{# Step 1: Source Info #}

Duplicate Event

Source Event

Event Name {{ sourceEvent.name }}
Event Type {{ sourceEvent.event_type }}
Year {{ sourceEvent.year }}
Status {{ sourceEvent.status|capitalize }}
{% if integrationCount > 0 %}

The following integrations will be copied:

{% for integration in integrations %}
{{ integration.integration_type|capitalize }}
{% endfor %}
{% else %}

No integrations to copy.

{% endif %}

Enter a unique name for the duplicated event

{# Step 2: New Dates #}

Set New Event Dates

When to announce the event

First day of the event

Last day of the event

Optional wrap-up deadline

Date Conflict Detected
    {# Step 3: Review #}

    Review & Confirm

    Source Event

    Name: {{ sourceEvent.name }}
    Announcement: {{ sourceEvent.announcement_date }}
    Start: {{ sourceEvent.start_date }}
    End: {{ sourceEvent.end_date }}
    {% if sourceEvent.wrap_up_date %}
    Wrap-up: {{ sourceEvent.wrap_up_date }}
    {% endif %}

    New Event

    Name:
    Announcement:
    Start:
    End:
    Wrap-up:
    {% if integrationCount > 0 %}

    {{ integrationCount }} Integration{{ integrationCount != 1 ? 's' : '' }} Will Be Created

    {% for integration in integrations %}
    {{ integration.integration_type|capitalize }}
    {% endfor %}
    {% endif %}

    Note: The new event will be created with "draft" status. All integrations will be copied with their configurations.

    {# Action Buttons #}
    {% include 'components/footer.html' %}