README: updated south migration steps
[unfold.git] / portal / templates / fed4fire / fed4fire_supportview.html
1 {% extends "layout.html" %}
2
3 {% block content %}
4         <div class="row">
5                 <h1><img src="{{ STATIC_URL }}icons/support-xs.png" alt="Support" /> Fed4Fire 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         </div>
14         
15         <div class="row">
16         
17                 <h2><a href="/portal/support/documentation">FAQ</a></h2>
18                 <h2>Contact Us</h2>
19                 
20                 <h3>Mailing List</h3>
21                 <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>
22                 <p>Also you can adress any issues in the same email address.</p>
23                 
24                 <h3>Mailing Address</h3>
25                 <p>
26                 UPMC - LIP6<br> 
27                 BoĆ®te courrier 16 <br>
28                 Couloir 26-00, Etage 01, Bureau 102<br>
29                 4 place Jussieu<br>
30                 75252 PARIS CEDEX 05<br>
31                 France<br> 
32                 </p>
33         </div>
34
35 <script>
36     $(document).ready(function() {
37                 $('li#nav-support').addClass("active");
38         $('button#ticketbtn').click(function() {
39             window.location="/portal/contact/";
40         });
41     });
42 </script>
43
44
45 {% endblock %}
46