16 lines
		
	
	
		
			449 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			449 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| 
 | |
| {% block extra_media %}{% load static %}
 | |
|     <link href="{% get_static_prefix %}css/registration.css" rel="stylesheet" type='text/css' />
 | |
| {% endblock %}
 | |
| 
 | |
| {% block navbarbrand %}
 | |
| <a class="navbar-brand navbar-brand-active" href="{% url 'index' %}">{{ site.domain }}</a>
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|     <div class="registration_wrap">
 | |
|         {% block registration_content %}{% endblock %}
 | |
|     </div>
 | |
| {% endblock %}
 |