forked from gergely/calendar-social
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			782 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			782 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% 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>
 | 
						|
        {{ form.display_name.errors }}
 | 
						|
        {{ form.display_name.label }}
 | 
						|
        {{ form.display_name }}<br>
 | 
						|
        {{ form.display_name.description }}
 | 
						|
    </p>
 | 
						|
 | 
						|
    <p>
 | 
						|
        {{ form.time_zone.errors }}
 | 
						|
        {{ form.time_zone.label }}
 | 
						|
        {{ form.time_zone }}<br>
 | 
						|
        {{ form.time_zone.description }}
 | 
						|
    </p>
 | 
						|
 | 
						|
    <button type="submit">{% trans %}Save{% endtrans %}</button>
 | 
						|
</form>
 | 
						|
{% endblock content %}
 |