{% extends "wafer/base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% block content %} {% if not registered %}

{% blocktrans %} You are not registered for {{ WAFER_CONFERENCE_NAME }} {% endblocktrans %}

{% blocktrans %} You can come back and register, at any time (until registration closes). {% endblocktrans %}

{% else %}

{% trans 'You have been registrered' %}

{% blocktrans %} Thank you for registering for {{ WAFER_CONFERENCE_NAME }}. {% endblocktrans %} {% if will_send_email %} {% trans 'You should receive a confirmation e-mail, shortly.' %} {% endif %} {% blocktrans %} You can come back and edit your registration, at any time (until registration closes). {% endblocktrans %}

{% if talks_open %}

{% url 'wafer_talk_submit' as submit_url %} {% blocktrans %} Now would be a great time to Submit a Talk Proposal. {% endblocktrans %}

{% endif %} {% endif %}

{% trans 'Back to my profile' %}

{% endblock %}