Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 127 → Rev 128

/trunk/squelettes/fiche_personne.tpl.html
1,7 → 1,9
<!-- COL - DEBUT FICHE PERSONNE -->
<script type="text/javascript">
$(function() {
$("#col-per").tabs();
$(document).ready(function() {
$("#col-per").tabs({
cookie: {expires: 1}// Stocke un cookie pour 1 jour
});
$('span.courriel').courriel();
});
</script>
/trunk/squelettes/fiche_collection.tpl.html
1,7 → 1,9
<!-- COL - DEBUT FICHE COLLECTION -->
<script type="text/javascript">
$(function() {
$("#col-col").tabs();
$(document).ready(function() {
$("#col-col").tabs({
cookie: {expires: 1}// Stocke un cookie pour 1 jour
});
$('span.courriel').courriel();
});
</script>
/trunk/squelettes/moteur.tpl.html
7,11 → 7,11
$("#col-rech-opt-toggle").toggle(
function() {
$("#col-rech-opt-toggle").html("Cacher la recherche avancée");
$("#col-rech-opt").toggle("slow");
$("#col-rech-opt").slideDown("fast");
},
function() {
$("#col-rech-opt-toggle").html("Afficher la recherche avancée");
$("#col-rech-opt").toggle("slow");
$("#col-rech-opt").slideUp("fast");
}
);
// Sélection du texte de la zone de recherche sur le focus
22,13 → 22,16
</script>
<h2>Rechercher une collection</h2>
<form id="col-form" name="col-form" action="<?=$url_form;?>" method="get">
<input name="module" type="hidden" value="<?=$url_module;?>" />
<input name="action" type="hidden" value="<?=$url_action;?>" />
<label id="col-rech"for="recherche">Rechercher</label>
<input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/>
<input id="col-rech-ok" type="submit" value="OK" />
<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche">Allez à la recherche avancée</a>
<div>
<input name="module" type="hidden" value="<?=$url_module;?>" />
<input name="action" type="hidden" value="<?=$url_action;?>" />
<label id="col-rech" for="recherche">Rechercher</label>
<input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/>
<input id="col-rech-ok" type="submit" value="OK" />
<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche">Allez à la recherche avancée</a>
</div>
</form>
 
<div id="col-rech-opt">
<h2 id="col-rech-opt-titre">Options de recherche</h2>
<div id="col-rech-opt-txt">
/trunk/squelettes/fiche_structure.tpl.html
1,11 → 1,15
<!-- COL - DEBUT FICHE STRUCTURE -->
<script type="text/javascript">
$(function() {
$("#col-str").tabs();
$(document).ready(function() {
$('#col-str').tabs({
cookie: {expires: 1}// Stocke un cookie pour 1 jour
});
$('span.courriel').courriel();
});
</script>
 
<h1><?=$info['cs_nom']?> <span class="discretion">(id:<?=$id?>)</span></h1>
 
<div id="col-str" class="col-onglets">
<ul class="col-sommaire">
<li><a href="#col-str-general">Général</a></li>
50,7 → 54,7
<dt>Condition d'accès</dt> <dd><?=$info['cs_condition_acces']?></dd>
<dt>Condition d'usage</dt> <dd><?=$info['cs_condition_usage']?></dd>
</dl>
 
<h3>Communication</h3>
<dl class="label-court">
<dt>Téléphone/Fax</dt> <dd><?=$info['_telephone_fax_']?></dd>
185,5 → 189,6
<?=$metadonnees?>
</div>
</div>
 
<hr />
<!-- COL - FIN FICHE STRUCTURE -->