mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-03 08:58:47 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			351 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			351 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% load static %}
 | 
						|
{% load i18n %}
 | 
						|
{% load crispy_forms_tags %}
 | 
						|
{% block content %}
 | 
						|
<p><a class="btn btn-default" href="{% url 'note:template_list' %}">{% trans "Buttons list" %}</a></p>
 | 
						|
<form method="post">
 | 
						|
{% csrf_token %}
 | 
						|
{{form|crispy}}
 | 
						|
<button class="btn btn-primary" type="submit">Submit</button>
 | 
						|
</form>
 | 
						|
{% endblock %}
 |