summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/client_details.html
blob: 39963bdea3337c4b9028e7c2282915b6772c65a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends 'base.html' %}
{% import "bootstrap/wtf.html" as wtf %}

{% block content %}

<h1 class="m-5">{{_('Client details')}}</h1>

{{ wtf.quick_form(form,
                  method='post',
                  button_map={'create': 'primary'},
                  extra_classes="mx-5") }}

{% endblock %}