Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 6 → Rev 7

/trunk/squelettes/collection.css
New file
0,0 → 1,39
@CHARSET "UTF-8";
/*--------------------------------------------------------------------------------------------------------------*/
/* Tableau du chronométrage du programme */
#pied_texte #chrono {
text-align: center;
margin:0 auto;}
#chrono table {
display:block;
border:3px solid #6495ed;
border-collapse:collapse;}
#chrono thead, tfoot {
background-color:#D0E3FA;
border:1px solid #6495ed;}
#chrono tbody {
background-color:#FFFFFF;
border:1px solid #6495ed;}
#chrono th {
font-family:monospace;
border:1px dotted #6495ed;
padding:5px;
background-color:#EFF6FF;
width:25%;}
#chrono td {
font-family:sans-serif;
font-size:80%;
border:1px solid #6495ed;
padding:5px;
text-align:center;}
#chrono caption {
font-family:sans-serif;
text-align: center;
width:90%;
margin:auto;}
.debogage{
color:black;
border:3px solid #6495ed;}
.debogage_fichier, .debogage_ligne{
font-size:10px;
color:#A9A9A9;}
/trunk/squelettes/resultat.tpl.html
New file
0,0 → 1,14
<div id="col_resultat">
<?=$fragmenteur;?>
<ul>
<?php foreach ($infos as $info) : ?>
<li><?=$info['structure']['ville'];?> - <?=$info['structure']['nom'];?>
<ul>
<?php foreach ($info['collections'] as $collection) : ?>
<li><?=$collection['nom'];?></li>
<?php endforeach; ?>
</ul>
</li>
<?php endforeach; ?>
</ul>
</div>
/trunk/squelettes/moteur.tpl.html
New file
0,0 → 1,10
<h2>Rechercher une collection</h2>
<form id="col_form" name="col_form" action="<?=$url_form;?>" method="get">
<input id="module" name="module" type="hidden" value="<?=$url_module;?>" />
<input id="action" name="action" type="hidden" value="<?=$url_action;?>" />
<fieldset>
<legend>Rechercher</legend>
<input id="recherche" name="recherche" type="text" />
<input id="col_form_submit" type="submit" value="OK" />
</fieldset>
</form>