Code

Created trunk inside of 2.6-lhm
[gosa.git] / trunk / gosa-core / setup / setup_feedback.tpl
2 {if $feedback_send}
4         <div class='default' style='margin:12px; '>  
5                 <font color='green'>{t}Feedback sucessfully send{/t}</font>
6         </div>  
8 {else}
9         
10 <div class='default' style='margin:12px; '>  
12         <h2>{$additional_info}</h2>
14         <h2>
15                 <input {if $subscribe} checked {/if} type='checkbox' name='subscribe' value='1' class='center'>&nbsp;{t}Subscribe to the gosa-announce mailinglist{/t}
16         </h2>
17         <p>
18         {t}When checking this option, GOsa will try to connect http://oss.gonicus.de in order to subscribe you to the gosa-announce mailing list. You've to confirm this by mail.{/t}
19         </p>
20         <table> 
21                 <tr>
22                         <td>
23                                 {t}Organization{/t}
24                         </td>
25                         <td>
26                                 <input name='organization' type='text' value='{$organization}' style='width:300px;'>
27                         </td>
28                 </tr>
29                 <tr>
30                         <td>
31                                 {t}Name{/t}
32                         </td>
33                         <td>
34                                 <input name='name' type='text' value='{$name}' style='width:300px;'>
35                         </td>
36                 </tr>
37                 <tr>
38                         <td>
39                                 {t}Mail address{/t}{$must}
40                         </td>
41                         <td>
42                                 <input name='eMail' type='text' value='{$eMail}' style='width:300px;'>  
43                         </td>
44                 </tr>
45         </table>
48         <p>&nbsp;</p>
49         <h2>
50                 <input {if $use_gosa_announce} checked {/if} type='checkbox' name='use_gosa_announce' value='1' class='center'>&nbsp;{t}Send feedback to the GOsa project team{/t}
51         </h2>
52         <p>
53         {t}When checking this option, GOsa will try to connect http://oss.gonicus.de in order to submit your form anonymously.{/t}
54         </p>
55         <b>{t}Generic{/t}</b>
56         <table> 
57                 <tr>
58                         <td style='vertical-align:top'>
59                                 {t}Did the setup procedure help you to get started?{/t}   
60                         </td>
61                         <td>
62                                 <input {if $get_started} checked {/if} type='radio' name='get_started' value='1'>{t}Yes{/t}
63                                 <br>
64                                 <input {if !$get_started} checked {/if} type='radio' name='get_started' value='0'>{t}No{/t}
65                         </td>
66                 </tr>
67                 <tr>
68                         <td style='vertical-align:top'>
69                                 {t}If not, what problems did you encounter{/t}:
70                         </td>
71                         <td>
72                                 <textarea name='problems_encountered' rows='4' cols='50' style='width:100%'>{$problems_encountered}</textarea>
73                         </td>
74                 </tr>
75                 <tr>
76                         <td style='vertical-align:top'>
77                                 {t}Is this the first time you use GOsa?{/t}
78                         </td>
79                         <td>
80                                 <input {if $first_use} checked {/if} type='radio' name='first_use' value='1'>{t}Yes{/t}
81                                 <br>
82                                 <input {if !$first_use} checked {/if} type='radio' name='first_use' value='0'>{t}No{/t},
83                                 {t}I use it since{/t}
84                                 <select name='use_since' title='{t}Select the year since when you are using GOsa{/t}'> 
85                                         {html_options options=$years}
86                                 </select>
87                         </td>   
88                 </tr>
89                 <tr>
90                         <td style='vertical-align:top'>
91                                 {t}What operating system / distribution do you use?{/t}
92                         </td>
93                         <td>
94                                 <input type='text' name='distribution' size=50 value='{$distribution}'>
95                         </td>
96                 </tr>
97                 <tr>
98                         <td style='vertical-align:top'>
99                                 {t}What web server do you use?{/t}
100                         </td>
101                         <td>
102                                 <input type='text' size=50 name='web_server' value='{$web_server}'>
103                         </td>
104                 </tr>
105                 <tr>
106                         <td style='vertical-align:top'>
107                                 {t}What PHP version do you use?{/t}
108                         </td>
109                         <td>
110                                 <input type='text' size=50 name='php_version' value='{$php_version}'>
111                         </td>
112                 </tr>
113         </table>
115         <br><b>{t}LDAP{/t}</b>
116         <table>
117                 <tr>
118                         <td style='vertical-align:top'>
119                         {t}What kind of LDAP server(s) do you use?{/t}
120                         </td>
121                         <td><input type='text' name='ldap_server' size=50 value='{$ldap_server}'>
122                         </td>
123                 </tr>
124                 <tr>
125                         <td>{t}How many objects are in your LDAP?{/t}
126                         </td>
127                         <td><input type='text' name='object_count' size=50 value='{$object_count}'>
128                         </td>
129                 </tr>
130         </table>
132         <br><b>{t}Features{/t}</b>
133         <table>
134                 <tr>
135                         <td style='vertical-align:top'>{t}What features of GOsa do you use?{/t}
136                         </td>
137                         <td>
138                                 {foreach from=$features_used item=data key=key}
139                                         <input type='checkbox' name='feature_{$key}' {if $data.USED} checked {/if}>
140                                         {$data.NAME}<br>
141                                 {/foreach}
142                         </td>
143                 </tr>
144                 <tr>
145                         <td style="vertical-align:top">{t}What features do you want to see in future versions of GOsa?{/t}
146                         </td>
147                         <td><textarea name='want_to_see_next' cols=50 rows=3>{$want_to_see_next}</textarea>
148                         </td>
149                 </tr>
150         </table>
151 </div>
152 <input type='submit' name='send_feedback' value='{t}Send feedback{/t}'>
153 {/if}
154 <input type='hidden' name='step_feedback' value='1'>