add plain text form
parent
c156577470
commit
c1b57c13f7
@ -1,43 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<style>
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 8px 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
background-color: #ddd;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.previous {
|
|
||||||
background-color: #f1f1f1;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.next {
|
|
||||||
background-color: #04AA6D;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.round {
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h2>En travaux</h2>
|
|
||||||
|
|
||||||
<p>Résulat du query : {{ search }} </p>
|
|
||||||
|
|
||||||
<a onclick="history.back()" class="next">« Retour</a>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
@ -0,0 +1,34 @@
|
|||||||
|
{% extends "container.html" %}
|
||||||
|
{% block corps %}
|
||||||
|
|
||||||
|
<div class="container marketing" style="margin-top: 50px;">
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<h1>Résulat de la recherche</h1>
|
||||||
|
|
||||||
|
<h2>Résulat de 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'] }}.</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 %}
|
||||||
Loading…
Reference in New Issue