Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 47 → Rev 48

/trunk/interfaces/squelettes/form_version.tpl.html
27,20 → 27,20
<legend>Général</legend>
<ul class="liste-champs">
<li>
<label for="titre">Titre</label>
<input id="titre" type="text" value=""/>
<label for="titre">Titre <span class="obligatoire">*</span></label>
<input id="titre" name="titre" type="text" value="<?=$version['titre']?>"/>
</li>
<li>
<label for="acronyme">Acronyme</label>
<input id="acronyme" type="text" value=""/>
<label for="acronyme">Acronyme <span class="obligatoire">*</span></label>
<input id="acronyme" name="acronyme" type="text" value="<?=$version['acronyme']?>"/>
</li>
<li>
<label for="version">Version</label>
<input id="version" type="text" value=""/>
<label for="version">Version <span class="obligatoire">*</span></label>
<input id="version" name="version" type="text" value="<?=$version['version']?>"/>
</li>
<li>
<label for="date_prod">Date de production</label>
<input id="date_prod" name="date_prod" type="text" value="<?=$date_prod?>" readonly="readonly"/>
<input id="date_prod" name="date_prod" type="text" value="<?=$version['date_prod']?>" readonly="readonly"/>
</li>
</ul>
</fieldset>
50,20 → 50,20
<ul class="liste-champs">
<li>
<label for="auteur_principal">Auteur principal</label>
<input type="text" id="auteur_principal" name="auteur_principal" value="" />
<label for="auteur_principal">Auteur principal <span class="obligatoire">*</span></label>
<input type="text" id="auteur_principal" name="auteur_principal" value="<?=$version['auteur_principal']?>" />
</li>
<li>
<label for="coordinateur">Coordinateur</label>
<input type="text" id="coordinateur" name="coordinateur" value="" />
<label for="coordinateur">Coordinateur <span class="obligatoire">*</span></label>
<input type="text" id="coordinateur" name="coordinateur" value="<?=$version['coordinateur']?>" />
</li>
<li>
<label for="editeur">Éditeur</label>
<input type="text" id="editeur" name="editeur" value="" />
<input type="text" id="editeur" name="editeur" value="Tela-Botanica, le réseau des Botanistes Francophones" readonly="readonly"/>
</li>
<li>
<label for="contact">Courriel de contact</label>
<input type="text" name="contact" value="" />
<label for="contact">Courriel de contact <span class="obligatoire">*</span></label>
<input type="text" name="contact" value="<?=$version['contact']?>" />
</li>
</ul>
</fieldset>
77,7 → 77,7
</p>
<div>
<label for="contributeur">Auteurs/Contributeurs</label>
<textarea id="contributeur" name="contributeur" rows="5"></textarea>
<textarea id="contributeur" name="contributeur" rows="5"><?=$version['contributeur']?></textarea>
</div>
</fieldset>
<hr class="nettoyage" />
85,27 → 85,27
<fieldset id="champs-domaine">
<legend>Domaines couverts par le référentiel</legend>
<p> Vous pouvez choisir plusieurs éléments par liste.</p>
<label for="ref-ver-dom-tax">Domaine taxonomique</label>
<label for="ref-ver-dom-tax">Domaine taxonomique <span class="obligatoire">*</span></label>
<div id="ref-ver-dom-tax" class="case-a-cocher-scroll" />
<ul class="liste-simple">
<? foreach ($domaine_taxo as $taxo) : ?>
<li><label><input type="checkbox" name="dom_tax" value="<?=$taxo?>" /> <?=$taxo?></label></li>
<li><label><input type="checkbox" name="dom_tax" value="<?=$taxo?>" <?=($version['dom_tax'] == $taxo ? 'checked="checked"': '')?> /> <?=$taxo?></label></li>
<? endforeach; ?>
</ul>
</div>
<label for="ref-ver-dom-geo">Domaine géographique</label>
<label for="ref-ver-dom-geo">Domaine géographique <span class="obligatoire">*</span></label>
<div id="ref-ver-dom-geo" class="case-a-cocher-scroll" />
<ul class="liste-simple">
<? foreach ($domaine_geo as $geo) : ?>
<li><label><input type="checkbox" name="dom_geo" value="<?=$geo?>" /> <?=$geo?></label></li>
<li><label><input type="checkbox" name="dom_geo" value="<?=$geo?>" <?=($version['dom_geo'] == $geo ? 'checked="checked"': '')?> /> <?=$geo?></label></li>
<? endforeach; ?>
</ul>
</div>
<label for="ref-ver-dom-code">Codes botaniques utilisés</label>
<label for="ref-ver-dom-code">Codes botaniques utilisés <span class="obligatoire">*</span></label>
<div id="ref-ver-dom-code" class="case-a-cocher-scroll" />
<ul class="liste-simple">
<? foreach ($domaine_code as $code) : ?>
<li><label><input type="checkbox" name="dom_code" value="<?=$code?>" /> <?=$code?></label></li>
<li><label><input type="checkbox" name="dom_code" value="<?=$code?>" <?=($version['dom_code'] == $code ? 'checked="checked"': '')?> /> <?=$code?></label></li>
<? endforeach; ?>
</ul>
</div>
117,30 → 117,24
<ul class="liste-champs">
<li>
<label for="source">Source</label>
<textarea id="source" name="source" rows="5"></textarea>
<input type="text" id="source" name="source" value="http://www.tela-botanica.org/page:telechargement_flore" readonly="readonly"/>
</li>
<li>
<label for="mention_legale">Mention légale</label>
<input type="text" id="mention_legale" name="mention_legale" value="" />
<label for="copyright">Copyright</label>
<input type="text" id="copyright" name="mention_legale" value="© Tela Botanica - <?=date('Y')?>." readonly="readonly"/>
</li>
<li>
<label for="ref-ver-licence">Licence</label>
<div id="case-a-cocher-scroll-licence" class="case-a-cocher-scroll">
<ul id="ref-ver-licence" class="liste-simple">
<? foreach ($licences as $licence) : ?>
<li><label><input type="checkbox" name="licence" value="<?=$licence['url']?>" /> <a href="<?=$licence['url']?>" onclick="window.open(this.href); return false;"><?=$licence['nom']?></a></label></li>
<? endforeach; ?>
</ul>
</div>
<label for="licence">Licence</label>
<input type="text" id="licence" name="licence" value="" readonly="readonly"/>
</li>
<li>
<label for="referencement">Comment citer ce référentiel?</label>
<textarea id="referencement" name="referencement" rows="5"></textarea>
<label for="referencement">Comment citer ce référentiel? <span class="obligatoire">*</span></label>
<textarea id="referencement" name="referencement" rows="5"><?=$version['referencement']?></textarea>
</li>
</ul>
</fieldset>
<hr class="nettoyage" />
<p><span class="obligatoire">*</span> : champ obligatoire.</p>
<input id="ref-versionnage-ok" type="submit" value="2. Lancer le versionnage" />
</form>
<form id="ref-rafraichir" name="ref-rafraichir" action="<?=$url_form;?>" method="get">