mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-10-30 23:39:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			744 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			744 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "wei/base.html" %}
 | |
| {% comment %}
 | |
| SPDX-License-Identifier: GPL-3.0-or-later
 | |
| {% endcomment %}
 | |
| {% load crispy_forms_tags %}
 | |
| {% load i18n %}
 | |
| 
 | |
| {% block profile_content %}
 | |
| <div class="card bg-light mb-3">
 | |
|     <h3 class="card-header text-center">
 | |
|         {{ title }}
 | |
|     </h3>
 | |
|     <div class="card-body">
 | |
|         <form method="post">
 | |
|             {% csrf_token %}
 | |
|             {{ form.media }} 
 | |
|             {{ form|crispy }}
 | |
|             <button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
 | |
|         </form>
 | |
|     </div>
 | |
| </div>
 | |
| <script>
 | |
|     document.addEventListener("DOMContentLoaded", function () {
 | |
|         if (window.jscolor && jscolor.install) {
 | |
|             jscolor.install();
 | |
|         }
 | |
|     });
 | |
| </script>
 | |
| {% endblock %} |