mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-26 06:32:26 +00:00
19 lines
381 B
HTML
19 lines
381 B
HTML
{% extends "search/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Recherche{% endblock %}
|
|
|
|
{% block content %}
|
|
{% bootstrap_form_errors searchform %}
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form searchform %}
|
|
{% bootstrap_button "Search" button_type="submit" icon="search" %}
|
|
</form>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|