layout and style changes
[myslice.git] / portal / templates / supportview.html
1 {% extends "layout.html" %}
2
3 {% block content %}
4         <div class="row">
5                 <h1><img src="{{ STATIC_URL }}img/icon_support_small.png" alt="Request a Slice" /> OneLab Portal Support</h1>
6         </div>
7
8         
9         <div class="row">
10                 <h2>Report a Bug</h2>
11                 <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>
12                 <button id="ticketbtn" type="button" class="btn btn-default"><span class="glyphicon glyphicon-plus"></span> Create Ticket</button>
13                 <h3>Unresolved Tickets</h3>
14         </div>
15
16         <div class="row">
17             <table class="mytable table table-bordered table-hover">
18                 <tr>
19                     <th>Ticket No</th>
20                                 <th>Reported By</th>
21                                 <th>Description</th>
22                     <th>Status</th>
23                 </tr>
24                 <tr>
25                     <td>1</td>
26                                 <td>yasin.upmc@gmail.com</td>
27                                 <td> Slice_request page is not working </td>
28                                 <td> Unresolved</td>
29                 </tr>
30                         <tr>
31                                 <td>2</td>
32                                 <td>azerty@lip6.fr</td>
33                                 <td>Unable to Register</td>
34                                 <td>Unresolved</td>
35                         </tr>
36         
37             </table>
38         </div>
39
40
41         
42         <div class="row">
43         
44                 <h2><a href="/portal/support/documentation">FAQ</a></h2>
45                 <h2>Contact Us</h2>
46                 
47                 <h3>Mailing List</h3>
48                 <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>
49                 <p>Also you can adress any issues in the same email address.</p>
50                 
51                 <h3>Mailing Address</h3>
52                 <p>
53                 UPMC - LIP6<br> 
54                 BoĆ®te courrier 16 <br>
55                 Couloir 26-00, Etage 01, Bureau 102<br>
56                 4 place Jussieu<br>
57                 75252 PARIS CEDEX 05<br>
58                 France<br> 
59                 </p>
60         </div>
61
62 <script>
63     $(document).ready(function() {
64         $('button#ticketbtn').click(function() {
65             window.location="/portal/contact/";
66         });
67     });
68 </script>
69
70
71 {% endblock %}
72