forked from gergely/calendar-social
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			593 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			593 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
{% from '_macros.html' import field %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<h1>{% trans %}First steps{% endtrans %}</h1>
 | 
						|
<p>
 | 
						|
    {% trans %}Welcome to Calendar.social!{% endtrans %}
 | 
						|
</p>
 | 
						|
<p>
 | 
						|
    {% trans %}These are the first steps you should make before you can start using the site.{% endtrans %}
 | 
						|
</p>
 | 
						|
<form method="post">
 | 
						|
    {{ form.errors }}
 | 
						|
    {{ form.hidden_tag() }}
 | 
						|
 | 
						|
    <p>
 | 
						|
        {{ field(form.display_name) }}
 | 
						|
    </p>
 | 
						|
    <p>
 | 
						|
        {{ field(form.time_zone) }}
 | 
						|
    </p>
 | 
						|
 | 
						|
    <button type="submit">{% trans %}Save{% endtrans %}</button>
 | 
						|
</form>
 | 
						|
{% endblock content %}
 |