-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5758ebc
commit b6ad3d8
Showing
16 changed files
with
228 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
{% extends "qfdmo/shared/_header.html" %} | ||
|
||
{% block content %} | ||
{# Panel «Filtres avancés» #} | ||
{% include 'qfdmo/formulaire/advanced_filters.html' %} | ||
<div> | ||
{# Panel «Filtres avancés» #} | ||
{% include 'qfdmo/formulaire/advanced_filters.html' %} | ||
|
||
{# Panel «Modifier ma recherche» #} | ||
{% include 'qfdmo/formulaire/update_search.html' %} | ||
{# Panel «Modifier ma recherche» #} | ||
{% include 'qfdmo/formulaire/update_search.html' %} | ||
|
||
<div data-search-solution-form-target="headerAddressPanel"> | ||
{# Digital #} | ||
<fieldset class="fr-segmented fr-segmented--sm qfdmo-w-full "> | ||
<legend class="fr-segmented__legend qfdmo-hidden"> | ||
{{ form.digital.label_tag() }} | ||
</legend> | ||
{{ form.digital }} | ||
</fieldset> | ||
|
||
<h4 class="fr-my-1w fr-h6"> | ||
Vos {% if form.digital.value() == "1" %}résultats{% else %}adresses{% endif %} {% if form.sous_categorie_objet.value() %}pour «{{ form.sous_categorie_objet.value() }}»{% endif %} : | ||
</h4> | ||
</div> | ||
</div> | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
{% if is_iframe %} | ||
<input type="hidden" name="iframe"> | ||
{% endif %} | ||
|
||
{% if is_carte %} | ||
<input type="hidden" name="carte" data-search-solution-form-target='carte'> | ||
{% endif %} | ||
|
||
{% if request.GET.get('limit') %} | ||
<input type="hidden" name="limit" value="{{ request.GET.get('limit') }}"> | ||
{% endif %} | ||
|
||
{% if request.GET.get('address_placeholder') %} | ||
<input type="hidden" name="address_placeholder" value="{{ request.GET.get('address_placeholder') }}"> | ||
{% endif %} | ||
|
||
<input type="hidden" name="r" value="{{ range(1000) | random }}"> | ||
|
||
{% if request.GET.get("first_dir") %} | ||
<input type="hidden" name="first_dir" value="{{ request.GET.get("first_dir") }}"> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.