Ignore:
Timestamp:
01/07/16 10:58:10 (9 years ago)
Author:
nanardon
Message:

Revoir le menu principal

Location:
trunk/LATMOS-Accounts-Web/root/html/includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LATMOS-Accounts-Web/root/html/includes/sidebar.tt

    r1596 r1602  
    2626<li><a href="[% c.uri_for('/search', 'adv') %]">Recherche avancée</a></li> 
    2727 
     28<li>[% l('View') %] 
     29<ul> 
     30[% FOREACH obj = c.model('Accounts').db.list_supported_objects.sort %] 
     31[% label = c.model('Accounts').obj_to_label(obj) %] 
     32[% NEXT IF NOT label %] 
     33    <li><a href="[% c.model('Accounts').obj_to_uri(obj) %]">[% label | html %]</a></li> 
     34[% END %] 
     35</ul> 
     36</li> 
     37 
    2838<li>[% l('Create') %] 
    2939<ul> 
     
    5161    [% ostat = c.model('Accounts').db.get_object('stat', stat) %] 
    5262    [% IF loop.first %] 
    53     <li><a href="[% c.uri_for('/stat') %]">Statistiques</a>: 
     63    <li class="ui-widget-header"><a href="[% c.uri_for('/stat') %]">[% l('Statistics') %]</a>: 
    5464    [% END %] 
    5565    <li><a href="[% c.uri_for('/stat', stat) %]">[% ostat.get_attributes('description') || stat | html %]</a></li> 
     
    6272</li> 
    6373 
    64  
    65 <li>[% l('View') %] 
    66 <ul> 
    67 [% FOREACH obj = c.model('Accounts').db.list_supported_objects.sort %] 
    68 [% label = c.model('Accounts').obj_to_label(obj) %] 
    69 [% NEXT IF NOT label %] 
    70     <li><a href="[% c.model('Accounts').obj_to_uri(obj) %]">[% label | html %]</a></li> 
    71 [% END %] 
    72 </ul> 
    73 </li> 
    74  
    7574<li><a href="[% c.uri_for('/admin') 
    7675%]">Gestion...</a></li> 
     
    7978<script> 
    8079$(function() { 
    81          $( "#menu" ).menu({ position: { my: "left top", at: "left-1 top+35" } }); 
     80    $( "#menu" ).menu({ 
     81        position: { my: "left top", at: "left-1 top+35" }, 
     82        items: "> :not(.ui-widget-header)", 
     83    }); 
    8284});  
    8385</script> 
  • trunk/LATMOS-Accounts-Web/root/html/includes/wrapper.tt

    r1583 r1602  
    99 
    1010<script src="[% c.uri_for('/static', 'js', 'jquery', 'external/jquery/jquery.js') %]"></script> 
     11 
    1112<script src="[% c.uri_for('/static', 'js', 'jquery', 'jquery-ui.js') %]"></script> 
    1213<link rel="stylesheet" href="[% c.uri_for('/static/js/jquery/jquery-ui.css') %]" type="text/css"> 
Note: See TracChangeset for help on using the changeset viewer.