Added files in FIBRE
[myslice.git] / portal / templates / fibre / fibre_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" /> 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         </div>
52
53 <script>
54     $(document).ready(function() {
55                 $('li#nav-support').addClass("active");
56         $('button#ticketbtn').click(function() {
57             window.location="/portal/contact/";
58         });
59     });
60 </script>
61
62
63 {% endblock %}
64