forked from gergely/calendar-social
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			480 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			480 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'settings-base.html' %}
 | |
| 
 | |
| {% block content %}
 | |
| {{ super() }}
 | |
| <h2>{% trans %}Edit profile{% endtrans %}</h2>
 | |
| <form method="post">
 | |
|     {{ form.hidden_tag() }}
 | |
|     {{ form.errors }}
 | |
| 
 | |
|     {{ form.display_name.errors }}
 | |
|     {{ form.display_name.label }}
 | |
|     {{ form.display_name }}
 | |
|     <br>
 | |
| 
 | |
|     {{ form.locked.errors }}
 | |
|     {{ form.locked.label }}
 | |
|     {{ form.locked}}
 | |
|     <br>
 | |
| 
 | |
|     <button type="submit">{% trans %}Save{% endtrans %}</button>
 | |
| </form>
 | |
| {% endblock content %}
 |