{% extends "cfp/event/base.html" %} {% load i18n %} {% load orga_edit_link %} {% load rich_text %} {% load rules %} {% block content %}{% with cfp=request.event.cfp %} {% has_perm 'agenda.view_schedule' request.user request.event as can_view_schedule %} {% has_perm 'agenda.view_sneak_peek' request.user request.event as can_view_sneak_peek %} {% has_perm 'orga.edit_cfp' request.user request.event as can_edit_cfp %}
{% if cfp.is_open %} {% blocktrans with deadline=cfp.max_deadline|date:"SHORT_DATETIME_FORMAT" timezone=request.timezone until_string=cfp.max_deadline|timeuntil trimmed %} You can enter submissions until {{ deadline }} ({{ timezone }}), {{ until_string }} from now. {% endblocktrans %} {% else %} {% blocktrans with deadline=cfp.max_deadline|date:"SHORT_DATETIME_FORMAT" timezone=request.timezone trimmed %} This Call for Papers closed on {{ deadline }} ({{ timezone }}). {% endblocktrans %} {% endif %}
{% endif %}