Add a 'deleteonly' flag to pltableeditor
[platal.git] / templates / bug.tpl
CommitLineData
7cb40d85
FB
1{**************************************************************************}\r
2{* *}\r
3{* Copyright (C) 2003-2008 Polytechnique.org *}\r
4{* http://opensource.polytechnique.org/ *}\r
5{* *}\r
6{* This program is free software; you can redistribute it and/or modify *}\r
7{* it under the terms of the GNU General Public License as published by *}\r
8{* the Free Software Foundation; either version 2 of the License, or *}\r
9{* (at your option) any later version. *}\r
10{* *}\r
11{* This program is distributed in the hope that it will be useful, *}\r
12{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}\r
13{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}\r
14{* GNU General Public License for more details. *}\r
15{* *}\r
16{* You should have received a copy of the GNU General Public License *}\r
17{* along with this program; if not, write to the Free Software *}\r
18{* Foundation, Inc., *}\r
19{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}\r
20{* *}\r
21{**************************************************************************}\r
22\r
23<script type="text/javascript">//<![CDATA[\r
24{literal}\r
25var edited=false;\r
26\r
27function cleanContent()\r
28{\r
29 if (edited == false) {\r
30 var field = document.getElementById('flyspray_detail');\r
31 field.value = '';\r
32 field.style.color = "black";\r
33 field.style.textAlign = "left";\r
34 }\r
35}\r
36\r
37function fillContent()\r
38{\r
39 var field = document.getElementById('flyspray_detail');\r
40 if (field.value == '' || (field.value.toUpperCase() == field.value && field.value.toLowerCase() == field.value)) {\r
41 field.value = "** Explique ici le problème ou l'amélioration proposée **";\r
42 field.style.color = "gray";\r
43 field.style.textAlign = "center";\r
44 edited = false;\r
45 } else {\r
46 edited = true;\r
47 }\r
48}\r
49{/literal}\r
50//]]></script>\r
51\r
52<div style="width:800px;height:600px">\r
53{if $bug_sent}\r
2aad1481 54<div><input type="submit" onclick="window.close()" name="close" value="Fermer" /></div>\r
7cb40d85
FB
55{else}\r
56<form action="send_bug" method="post" onsubmit="cleanContent()">\r
57 {xsrf_token_field}\r
58 <h1>Signaler un bug ou demander une amélioration</h1>\r
59 <div style="margin-left:10%;margin-right:10%">\r
60 <select name="task_type">\r
61 <option value="bug">Erreur</option>\r
62 <option value="wish">Souhait</option>\r
63 <option value="help">Aide/Dépannage</option>\r
64 </select>\r
65 &nbsp;&nbsp;Sujet&nbsp;: <input type="text" name="item_summary" id="flyspray_title" value="sur la page { $location }" size="50" maxlength="100"/>\r
66 <textarea name="detailed_desc" id="flyspray_detail" cols="70" rows="10" style="width:100%;margin-top:10px;margin-bottom:10px;height:400px;display:block;" onFocus="cleanContent()" onBlur="fillContent()"></textarea>\r
67 <input type="hidden" name="page" value="{$smarty.server.HTTP_REFERER|default:$smarty.request.page}" />\r
68 <div class="center">\r
69 <input type="button" value="Abandonner" onclick="window.close()"/>\r
70 <input type="submit" name="send" value="Envoyer"/>\r
71 </div>\r
72 </div>\r
73</form>\r
74<script type="text/javascript">\r
75 fillContent();\r
76</script>\r
77</div>\r
78{/if}\r
79\r
80{* vim:set et sws=2 sts=2 sw=2 enc=utf-8: *}\r