layout and style changes
[myslice.git] / portal / templates / supportview.html
index 8da135f..3b4c2ef 100644 (file)
@@ -1,51 +1,71 @@
-{% extends "layout-unfold1.html" %}
+{% extends "layout.html" %}
 
-{% block head %}
-{{ wizard.form.media }}
-{% endblock %}
-
-{% block unfold_main %}
-
-<h1>OneLab Portal Support</h1>
-
-<h2>Report a Bug</h2>
-<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>
-<h3>Unresolved Tickets</h3>
+{% block content %}
+       <div class="row">
+               <h1><img src="{{ STATIC_URL }}img/icon_support_small.png" alt="Request a Slice" /> OneLab Portal Support</h1>
+       </div>
 
+       
+       <div class="row">
+               <h2>Report a Bug</h2>
+               <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>
+               <button id="ticketbtn" type="button" class="btn btn-default"><span class="glyphicon glyphicon-plus"></span> Create Ticket</button>
+               <h3>Unresolved Tickets</h3>
+       </div>
 
-<div id="middle" align="center">
-    <div class="well">
-        <table class="mytable table table-bordered table-hover">
-            <tr>
-                <th>Ticket No</th>
+       <div class="row">
+           <table class="mytable table table-bordered table-hover">
+               <tr>
+                   <th>Ticket No</th>
                                <th>Reported By</th>
                                <th>Description</th>
-                <th>Status</th>
-            </tr>
-            <tr>
-                <td>1</td>
+                   <th>Status</th>
+               </tr>
+               <tr>
+                   <td>1</td>
                                <td>yasin.upmc@gmail.com</td>
                                <td> Slice_request page is not working </td>
                                <td> Unresolved</td>
-            </tr>
+               </tr>
                        <tr>
-                       <td>2</td>
+                               <td>2</td>
                                <td>azerty@lip6.fr</td>
-                       <td>Unable to Register</td>
-                       <td>Unresolved</td>
+                               <td>Unable to Register</td>
+                               <td>Unresolved</td>
                        </tr>
-
-        </table>
-    </div>
-</div>
-</div>
-
-
+       
+           </table>
+       </div>
 
 
+       
+       <div class="row">
+       
+               <h2><a href="/portal/support/documentation">FAQ</a></h2>
+               <h2>Contact Us</h2>
+               
+               <h3>Mailing List</h3>
+               <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>
+               <p>Also you can adress any issues in the same email address.</p>
+               
+               <h3>Mailing Address</h3>
+               <p>
+               UPMC - LIP6<br> 
+               BoĆ®te courrier 16 <br>
+               Couloir 26-00, Etage 01, Bureau 102<br>
+               4 place Jussieu<br>
+               75252 PARIS CEDEX 05<br>
+               France<br> 
+               </p>
+       </div>
 
-<h2><a href="/portal/support/documentation">FAQ</a></h2>
-<h2><a href="/portal/contact">Contact Us</a></h2>
+<script>
+    $(document).ready(function() {
+        $('button#ticketbtn').click(function() {
+            window.location="/portal/contact/";
+        });
+    });
+</script>
 
 
 {% endblock %}