{% load i18n %} {% load eventurl %}

{% trans "Room" %}

{% if room and mode == "join" %}

{% blocktrans trimmed with room=room.name %} You are taking part in the roomshare as part of the room {{ room }}. {% endblocktrans %}

{% elif room and mode == "create" %}

{% blocktrans trimmed with room=room.name %} You are taking part in the roomshare as part of the newly created room {{ room }}. {% endblocktrans %}

{% else %}

{% trans "You will be randomly assigned a room." %}

{% endif %}