nk20/templates/note/transactiontemplate_list.html

27 lines
839 B
HTML
Raw Normal View History

2019-08-11 17:55:04 +00:00
{% extends "base.html" %}
2020-02-03 14:20:37 +00:00
{% load pretty_money %}
2020-03-23 19:21:25 +00:00
{% load i18n %}
{% load render_table from django_tables2 %}
2019-08-11 17:55:04 +00:00
{% block content %}
2020-03-23 19:21:25 +00:00
<div class="row justify-content-center mb-4">
<div class="col-md-10 text-center">
<h4>
{% trans "search button" %}
</h4>
<form action="" method="GET">
{% csrf_token %}
<input class="form-control mx-auto w-25" type="text" id="name" name="name" value='{{ request.GET.name }}'/>
</form>
<ul class="list-group list-group-flush" id="alias_matched">
</ul>
<hr>
<a class="btn btn-primary text-center my-4" href="{% url 'note:template_create' %}">Créer un bouton</a>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-10">
{% render_table table %}
</div>
</div>
2019-08-11 17:55:04 +00:00
{% endblock %}