You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.5 KiB
HTML
35 lines
1.5 KiB
HTML
{% extends "container.html" %}
|
|
{% block corps %}
|
|
|
|
<div class="container marketing" style="margin-top: 50px;">
|
|
<div>
|
|
|
|
<h1>Résulat de la recherche</h1>
|
|
|
|
<h2>{{ actes | count }} résulats pour la recherche sur "<b>{{ search }}</b>" :</h2>
|
|
|
|
{% for acte in actes %}
|
|
<div>
|
|
<div class="title-princier">
|
|
<h3></h3>
|
|
</div>
|
|
<div class="pboly">
|
|
<p class="chrono-p font-weight-bold"><a href="{{url_for('main.acte', house=acte['house'], prince=acte['prince_url'], dateitem=acte['dateitem'])}}">{{ acte['prince_name'] }}, {{ acte['date'] }}, extrait : "... {{ acte['show_text'] }} ..."</a></p>
|
|
<p style="margin-bottom: 5%">
|
|
{% if acte['place'] != 'NS' %}
|
|
<span class="badge badge-pill badge" style="background-color: #284AA7; color: white; font-size: small;">{{ acte['place'] }}</span>
|
|
{% endif %}
|
|
<span class="badge badge-pill badge" style="background-color: #A7288A; color: white; font-size: small;">{{ acte['diplo_state'] }}</span>
|
|
<span class="badge badge-pill badge" style="background-color: #A78528; color: white; font-size: small;">{{ acte['diplo_type'] }}</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<a class="btn btn-outline-success my-2 my-sm-0" onclick="history.back()" >« Retour</a>
|
|
|
|
</div>
|
|
</div><!-- /.container -->
|
|
|
|
{% endblock %}
|