new style, first version (header, login, dashboard)
[myslice.git] / portal / templates / home-view.html
1 {# fine for either layout-unfold1.html (logged in) or layout-unfold2.html (needs a login prompt) #}
2 {% extends layout_1_or_2 %}
3
4 {% block unfold_margin %}
5 {% include 'widget-login.html' %}
6 {% endblock unfold_margin %}
7
8 {% block unfold_main %}
9 <!-- xxx ideally only onelab.css but ... xxx -->
10 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}/css/registration.css" />
11         <div id="home-dashboard">
12         <ul class="nav nav-tabs">
13           <li class="active"><a href="#">USER</a></li>
14           <li><a href="#">MANAGER</a></li>
15         </ul>
16         <div id="user">
17                 <table>
18                         <tr>
19                                 <td>PROFILE</td>
20                                 <td>SLICES</td>
21                                 <td>SUPPORT</td>
22                         </tr>
23                         <tr>
24                                 <td><img src="{{ STATIC_URL }}img/icon_user_color.png" alt="" /></td>
25                                 <td><img src="{{ STATIC_URL }}img/icon_slices.png" alt="" /></td>
26                                 <td><img src="{{ STATIC_URL }}img/icon_support.png" alt="" /></td>
27                         </tr>
28                         <tr>
29                                 <td>
30                                         <a href="/portal/register">Register</a>
31                                 </td>
32                         </tr>
33                 </table>
34         </div>
35         <div id="manager">
36                 
37         </div>
38 </div>
39
40 {% endblock unfold_main %}