8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-12-25 08:23:46 +00:00
re2o/search/templates/search/search.html

20 lines
381 B
HTML
Raw Normal View History

2016-07-04 21:56:51 +00:00
{% extends "search/sidebar.html" %}
2016-07-02 22:27:22 +00:00
{% load bootstrap3 %}
2016-07-03 16:09:58 +00:00
{% block title %}Recherche{% endblock %}
2016-07-02 22:27:22 +00:00
{% 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>
2016-07-04 21:56:51 +00:00
<br />
<br />
<br />
<br />
<br />
2016-07-02 22:27:22 +00:00
{% endblock %}