Wording.
[platal.git] / templates / include / form.valid.entreprises.tpl
CommitLineData
b814a8b8
SJ
1{**************************************************************************}
2{* *}
c441aabe 3{* Copyright (C) 2003-2014 Polytechnique.org *}
b814a8b8
SJ
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">
543b59cc 29 <td class="titre">Noms similaires existants&nbsp;:</td>
e126548a
SJ
30 <td>
31 <span id="{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_truncated"
9fdf6abf
SJ
32 onclick="$('#{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_truncated').hide();
33 $('#{$valid->type}_{$valid->profile->id()}_{$valid->stamp}_full').show()">
e126548a
SJ
34 {$valid->suggestions|truncate:200:"&hellip; <strong><small>(cliquez pour tout afficher)</small></strong>"}
35 </span>
9fdf6abf
SJ
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>
e126548a 41 {$valid->suggestions}
9fdf6abf
SJ
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>
e126548a
SJ
46 </span>
47 </td>
543b59cc
SJ
48</tr>
49<tr class="pair">
b814a8b8
SJ
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">
a6dcf7ed
TM
66 <td class="titre">Code SIREN&nbsp;:</td>
67 <td>{$valid->SIREN}</td>
68</tr>
69<tr class="pair">
b814a8b8
SJ
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">
e0ee3120 78 <td class="titre">Adresse&nbsp;:</td>
ea9cfc3e 79 <td>{$valid->address}</td>
e0ee3120
SJ
80</tr>
81<tr class="pair">
b814a8b8
SJ
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">
4dcee20b 91 <small>Remplir tous les champs possibles, en particulier le <a href="http://societe.com/">code NAF</a> et l'adresse du siège social si possible.</small>
b814a8b8
SJ
92 </td>
93</tr>
94
448c8cdc 95{* vim:set et sw=2 sts=2 sws=2 fenc=utf-8: *}