1 {**************************************************************************}
3 {* Copyright (C) 2003-2009 Polytechnique.org *}
4 {* http://opensource.polytechnique.org/ *}
6 {* This program is free software; you can redistribute it and/or modify *}
7 {* it under the terms of the GNU General Public License as published by *}
8 {* the Free Software Foundation; either version 2 of the License, or *}
9 {* (at your option) any later version. *}
11 {* This program is distributed in the hope that it will be useful, *}
12 {* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13 {* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14 {* GNU General Public License for more details. *}
16 {* You should have received a copy of the GNU General Public License *}
17 {* along with this program; if not, write to the Free Software *}
18 {* Foundation, Inc., *}
19 {* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
21 {**************************************************************************}
27 Liste des entreprises correspondant à ta recherche :
29 {foreach from=$jobs item=job}
30 <li>{$job.name}{if $job.acronym} ({$job.acronym}){/if}
31 <a href="admin/jobs/{$job.id}">{icon name="page_edit" title="Éditer"}</a></li>
37 <form action="admin/jobs/{$selectedJob.id}" method="post">
41 <th colspan="2">Entreprise n° {$selectedJob.id}</th>
45 <td><input type="text" name="name" value="{$selectedJob.name}" /></td>
48 <td><input type="text" name="acronym" value="{$selectedJob.acronym}" /></td>
52 <td><input type="text" name="url" value="{$selectedJob.url}" /></td>
55 <td>Adresse email</td>
56 <td><input type="text" name="email" value="{$selectedJob.email}" /></td>
60 <td><input type="text" name="NAF_code" value="{$selectedJob.NAF_code}" /></td>
64 <td><input type="text" name="AX_code" value="{$selectedJob.AX_code}" /></td>
67 <td>Identifiant de la holding</td>
68 <td><input type="text" name="holdingId" value="{$selectedJob.holdingId}" /></td>
71 <td>Nom de la holding</td>
72 <td>{$selectedJob.holdingName}</td>
75 <td>Acronyme de la holding</td>
76 <td>{$selectedJob.holdingAcronym}</td>
80 <td<textarea cols="30" rows="4" name="address">{$selectedJob.address}</textarea></td>
84 <td><input type="text" name="tel" value="{$selectedJob.tel}" /></td>
88 <td><input type="text" name="fax" value="{$selectedJob.fax}" /></td>
91 <td>Remplacer par l'entreprise n°</td>
92 <td><input type="text" name="newJobId" /></td>
96 Confirmation du remplacement de cette entreprise :
97 <input type="checkbox" name="change" /><br />
98 <input type="submit" name="edit" value="Éditer" />
103 <form action="" method="get">
105 Nom ou acronyme de l'entreprise :
106 <input type="text" name="job" value="{$askedJob}" /><br />
107 <input type="submit" name="search" value="Rechercher" />
111 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}