Merge branch 'onelab' of ssh://git.onelab.eu/git/myslice into onelab
[myslice.git] / portal / templates / supportview.html
1 {% extends "layout-unfold1.html" %}
2
3 {% block head %}
4 {{ wizard.form.media }}
5 {% endblock %}
6
7 {% block unfold_main %}
8
9 <h1>OneLab Portal Support</h1>
10
11 <h2>Report a Bug</h2>
12 <p>If you have found a bug or having difficulties accesing some features or found some anomalies, please report it using our ticketing system.</p>
13 <button id="ticketbtn" type="button" class="btn btn-default"><span class="glyphicon glyphicon-plus"></span> Create Ticket</button>
14 <h3>Unresolved Tickets</h3>
15
16
17 <div id="middle" align="center">
18     <div class="well">
19         <table class="mytable table table-bordered table-hover">
20             <tr>
21                 <th>Ticket No</th>
22                                 <th>Reported By</th>
23                                 <th>Description</th>
24                 <th>Status</th>
25             </tr>
26             <tr>
27                 <td>1</td>
28                                 <td>yasin.upmc@gmail.com</td>
29                                 <td> Slice_request page is not working </td>
30                                 <td> Unresolved</td>
31             </tr>
32                         <tr>
33                         <td>2</td>
34                                 <td>azerty@lip6.fr</td>
35                         <td>Unable to Register</td>
36                         <td>Unresolved</td>
37                         </tr>
38
39         </table>
40     </div>
41 </div>
42 </div>
43
44
45
46
47
48 <h2><a href="/portal/support/documentation">FAQ</a></h2>
49 <h2>Contact Us</h2>
50
51 <h3>Mailing List</h3>
52 <p>You can subscribe to our mailing list by sending a request to: <b>support</b> AT <b>myslice</b> DOT <b>info</b></p>
53 <p>Also you can adress any issues in the same email address.</p>
54
55 <h3>Mailing Address</h3>
56 <p>
57 UPMC - LIP6<br> 
58 BoĆ®te courrier 16 <br>
59 Couloir 26-00, Etage 01, Bureau 102<br>
60 4 place Jussieu<br>
61 75252 PARIS CEDEX 05<br>
62 France<br> 
63 </p>
64
65 <script>
66     $(document).ready(function() {
67         $('button#ticketbtn').click(function() {
68             window.location="/portal/contact/";
69         })
70     });
71 </script>
72
73
74 {% endblock %}
75