f6929b5a285bb30bc37c8586bdfac9c0ba89d97f
[platal.git] / templates / include / form.valid.entreprises.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2014 Polytechnique.org                             *}
4 {*  http://opensource.polytechnique.org/                                  *}
5 {*                                                                        *}
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.                                   *}
10 {*                                                                        *}
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.                          *}
15 {*                                                                        *}
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               *}
20 {*                                                                        *}
21 {**************************************************************************}
22
23
24 <tr class="pair">
25   <td class="titre">Nom&nbsp;:</td>
26   <td>{$valid->name}</td>
27 </tr>
28 <tr class="pair">
29   <td class="titre">Noms similaires existants&nbsp;:</td>
30   <td>
31     <span id="{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_truncated"
32           onclick="$('#{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_truncated').hide();
33                    $('#{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_full').show()">
34       {$valid->suggestions|truncate:200:"&hellip; <strong><small>(cliquez pour tout afficher)</small></strong>"}
35     </span>
36     <span id="{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_full" style="display: none" >
37       <span onclick="$('#{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_truncated').show();
38                      $('#{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_full').hide();">
39         {icon name=delete title="Cacher les suggestions"}
40       </span>
41       {$valid->suggestions}
42       <span onclick="$('#{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_truncated').show();
43                      $('#{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_full').hide();">
44         {icon name=delete title="Cacher les suggestions"}
45       </span>
46     </span>
47   </td>
48 </tr>
49 <tr class="pair">
50   <td class="titre">Acronyme&nbsp;:</td>
51   <td>{$valid->acronym}</td>
52 </tr>
53 <tr class="pair">
54   <td class="titre">Site web&nbsp;:</td>
55   <td>{$valid->url}</td>
56 </tr>
57 <tr class="pair">
58   <td class="titre">Email&nbsp;:</td>
59   <td>{$valid->email}</td>
60 </tr>
61 <tr class="pair">
62   <td class="titre">Holding&nbsp;:</td>
63   <td>{$valid->holdingid}</td>
64 </tr>
65 <tr class="pair">
66   <td class="titre">Code SIREN&nbsp;:</td>
67   <td>{$valid->SIREN}</td>
68 </tr>
69 <tr class="pair">
70   <td class="titre">Code NAF&nbsp;:</td>
71   <td>{$valid->NAF_code}</td>
72 </tr>
73 <tr class="pair">
74   <td class="titre">Code AX&nbsp;:</td>
75   <td>{$valid->AX_code}</td>
76 </tr>
77 <tr class="pair">
78   <td class="titre">Adresse&nbsp;:</td>
79   <td>{$valid->address}</td>
80 </tr>
81 <tr class="pair">
82   <td class="titre">Téléphone&nbsp;:</td>
83   <td>{$valid->tel}</td>
84 </tr>
85 <tr class="pair">
86   <td class="titre">Fax&nbsp;:</td>
87   <td>{$valid->fax}</td>
88 </tr>
89 <tr class="pair">
90   <td colspan="2" class="center">
91     <small>Bien remplir tous les champs, en particulier les <a href="http://societe.com/">codes NAF</a> et AX !</small>
92   </td>
93 </tr>
94
95 {* vim:set et sw=2 sts=2 sws=2 fenc=utf-8: *}