{% extends 'base.html' %} {% from '_macros.html' import field %} {% block content %}

{% trans %}First steps{% endtrans %}

{% trans %}Welcome to Calendar.social!{% endtrans %}

{% trans %}These are the first steps you should make before you can start using the site.{% endtrans %}

{{ form.hidden_tag() }} {% if form.errors %} {% for error in form.errors %} {{ error }} {% endfor %}
{% endif %} {{ field(form.display_name) }} {{ field(form.time_zone) }}
{% endblock content %}