mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 17:12:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			822 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			822 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% load static %}
 | 
						|
{% load i18n %}
 | 
						|
{% load crispy_forms_tags %}
 | 
						|
{% load pretty_money %}
 | 
						|
 | 
						|
{% 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">{% trans "Submit" %}</button>
 | 
						|
    </form>
 | 
						|
 | 
						|
    {% if price_history and price_history.1 %}
 | 
						|
        <hr>
 | 
						|
 | 
						|
        <h4>{% trans "Price history" %}</h4>
 | 
						|
        <ul>
 | 
						|
        {% for price in price_history %}
 | 
						|
            <li>{{ price.price|pretty_money }} {% if price.time %}({% trans "Obsolete since" %} {{ price.time }}){% else %}({% trans "Current price" %}){% endif %}</li>
 | 
						|
        {% endfor %}
 | 
						|
        </ul>
 | 
						|
    {% endif %}
 | 
						|
{% endblock %}
 |