23 lines
		
	
	
	
		
			687 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			687 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "auth_base.html" %}
 | 
						|
 | 
						|
{% load bootstrap_tags %}
 | 
						|
{% load i18n %}
 | 
						|
{% load boxes_tags %}
 | 
						|
 | 
						|
{% block page_title %}{% trans "Create Speaker Profile" %}{% endblock %}
 | 
						|
 | 
						|
{% block body %}
 | 
						|
    {% box "speaker-profile" %}
 | 
						|
 | 
						|
    <form method="POST" action="" enctype="multipart/form-data" class="form-horizontal">
 | 
						|
        {% csrf_token %}
 | 
						|
        <legend>{% trans "Create Speaker Profile" %}</legend>
 | 
						|
        <fieldset>
 | 
						|
            {{ form|as_bootstrap }}
 | 
						|
        </fieldset>
 | 
						|
        <div class="form-actions">
 | 
						|
            <input class="btn btn-primary" type="submit" value="Save" />
 | 
						|
            <a class="btn" href="{% url dashboard %}">Cancel</a>
 | 
						|
        </div>
 | 
						|
    </form>
 | 
						|
{% endblock %}
 |