sourceml devient un plugin mtweb
[mw_sourceml] / app / out / default / views / admin / licences / add.php
1 <h2>Nouvelle licence</h2>
2
3 <ul class="buttons">
4   <li><a href="<?php echo $this->url("admin/licences") ?>">Retour &agrave; la liste des licences</a></li>
5 </ul>
6
7 <form name="licence_form" action="<?php echo $this->url("admin/licences/add") ?>" method="post">
8   <fieldset>
9     <ul>
10       <li>
11         <label for="nom">nom</label>
12         <div class="form_input">
13           <input size="45" type="text" name="nom" id="nom" value="<?php echo isset($this->out["licence"]["nom"]) ? $this->out["licence"]["nom"] : "" ?>" />
14         </div>
15       </li>
16       <li>
17         <label for="url">url</label>
18         <div class="form_input">
19           <input size="45" type="text" name="url" id="url" value="<?php echo isset($this->out["licence"]["url"]) ? $this->out["licence"]["url"] : "" ?>" />
20         </div>
21       </li>
22       <li>
23         <div class="form_single_button">
24           <input type="submit" value="Ajouter" />
25         </div>
26       </li>
27     </ul>
28   </fieldset>
29 </form>