8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2025-01-15 04:34:29 +00:00
re2o/search/templates/search/index.html

44 lines
1.6 KiB
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 %}Résultats de la recherche{% endblock %}
2016-07-02 22:27:22 +00:00
{% block content %}
{% if users_list %}
<h2>Résultats dans les utilisateurs</h2>
2016-07-03 16:09:58 +00:00
{% include "users/aff_users.html" with users_list=users_list %}
2016-07-02 22:27:22 +00:00
{% endif%}
{% if interfaces_list %}
2016-07-02 22:27:22 +00:00
<h2>Résultats dans les machines : </h2>
{% include "machines/aff_machines.html" with interfaces_list=interfaces_list %}
2016-07-02 22:27:22 +00:00
{% endif %}
{% if facture_list %}
<h2>Résultats dans les factures : </h2>
2016-07-03 16:09:58 +00:00
{% include "cotisations/aff_cotisations.html" with facture_list=facture_list %}
2016-07-02 22:27:22 +00:00
{% endif %}
2016-07-04 21:56:51 +00:00
{% if white_list %}
<h2>Résultats dans les accès à titre gracieux : </h2>
{% include "users/aff_whitelists.html" with white_list=white_list %}
{% endif %}
2016-07-02 22:27:22 +00:00
{% if ban_list %}
<h2>Résultats dans les banissements : </h2>
2016-07-03 16:09:58 +00:00
{% include "users/aff_bans.html" with ban_list=ban_list %}
2016-07-02 22:27:22 +00:00
{% endif %}
2016-07-06 21:53:44 +00:00
{% if switch_list %}
<h2>Résultats dans les switchs : </h2>
{% include "topologie/aff_switch.html" with switch_list=switch_list %}
{% endif %}
{% if port_list %}
<h2>Résultats dans les ports : </h2>
{% include "topologie/aff_port.html" with port_list=port_list %}
{% endif %}
{% if not ban_list and not interfaces_list and not users_list and not facture_list and not white_list and not port_list and not switch_list%}
2016-07-02 23:37:58 +00:00
<h3>Aucun résultat</h3>
{% endif %}
<h6>(Seulement les 15 premiers résultats sont affichés dans chaque catégorie)</h6>
2016-07-02 23:37:58 +00:00
<br />
<br />
<br />
2016-07-02 22:27:22 +00:00
{% endblock %}