19 lines
		
	
	
		
			509 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			509 B
		
	
	
	
		
			HTML
		
	
	
	
| {% extends "base.html" %}
 | |
| {% load crispy_forms_tags %}
 | |
| 
 | |
| {% block title %}{{ user.username }}{% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|   <h1>{{ user.username }}</h1>
 | |
|   <form class="form-horizontal" method="post" action="{% url 'users:update' %}" enctype="multipart/form-data">
 | |
|     {% csrf_token %}
 | |
|     {{ form|crispy }}
 | |
|     {{ form_blurb|crispy }}
 | |
|     <div class="control-group">
 | |
|       <div class="controls">
 | |
|         <button type="submit" class="btn">Update</button>
 | |
|       </div>
 | |
|     </div>
 | |
|   </form>
 | |
| {% endblock %}
 |