forked from gergely/calendar-social
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			513 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			513 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
{% from '_macros.html' import field %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<h2>{% trans %}Create a group{% endtrans %}</h2>
 | 
						|
 | 
						|
<form method="post" class="ui form">
 | 
						|
    {{ form.hidden_tag() }}
 | 
						|
 | 
						|
    {{ field(form.handle) }}
 | 
						|
    {{ field(form.display_name) }}
 | 
						|
    {{ field(form.visibility) }}
 | 
						|
 | 
						|
    <button class="ui primary button">{% trans %}Create{% endtrans %}</button>
 | 
						|
    <a href="{{ url_for('group.list_groups') }}" class="ui button">{% trans %}Cancel{% endtrans %}</a>
 | 
						|
</form>
 | 
						|
{% endblock content %}
 |