forked from gergely/calendar-social
		
	This will make it easier to add new settings pages for e.g. privacy settings, applications, etc. later.
		
			
				
	
	
		
			21 lines
		
	
	
		
			433 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			433 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'settings-base.html' %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
{{ super() }}
 | 
						|
<h2>{% trans %}Settings{% endtrans %}</h2>
 | 
						|
<form method="post">
 | 
						|
    {{ form.hidden_tag() }}
 | 
						|
 | 
						|
    {{ form.errors }}
 | 
						|
    <br>
 | 
						|
 | 
						|
    {{ form.timezone.errors }}
 | 
						|
    {{ form.timezone.label }}
 | 
						|
    {{ form.timezone}}
 | 
						|
    <br>
 | 
						|
 | 
						|
    <button type="submit">{% trans %}Save{% endtrans %}</button>
 | 
						|
    <a href="{{ url_for('hello') }}">Cancel</a>
 | 
						|
</form>
 | 
						|
{% endblock content %}
 |