Ignore:
Timestamp:
09/28/12 08:08:47 (12 years ago)
Author:
nanardon
Message:

fix conflict

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

Legend:

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

    r1081 r1162  
    1313[% IF object.type == 'user' %] 
    1414    [% IF object.get_attributes('unexported') %] 
    15 <img src="[% c.uri_for('/static', 'icons', 'gtk-delete.png') %]" 
     15<img src="[% c.uri_for('/static', 'images', 'gtk-delete.png') %]" 
    1616class="notice" title="Ce compte est désactivé" alt="disable"> 
    1717    [% ELSIF object.get_attributes('expired') %] 
    18 <img src="[% c.uri_for('/static', 'icons', 'emblem-urgent.png') %]" 
     18<img src="[% c.uri_for('/static', 'images', 'emblem-urgent.png') %]" 
    1919class="notice" title="Ce compte est expiré ([% object.get_attributes('expired') %])" alt="expired"> 
    2020    [% ELSIF object.get_attributes('expire') %] 
    21 <img src="[% c.uri_for('/static', 'icons', 'appointment-new.png') %]" 
     21<img src="[% c.uri_for('/static', 'images', 'appointment-new.png') %]" 
    2222class="notice" title="Ce compte est temporaire ([% object.get_attributes('expire') %])" alt="temporary"> 
    2323    [% END %] 
    2424[% ELSE %] 
    2525    [% IF object.get_attributes('unexported') %] 
    26 <img src="[% c.uri_for('/static', 'icons', 'gtk-delete.png') %]" 
     26<img src="[% c.uri_for('/static', 'images', 'gtk-delete.png') %]" 
    2727class="notice" title="Cette entrée est désactivés" alt="disable"> 
    2828    [% END %] 
  • trunk/LATMOS-Accounts-Web/root/html/includes/form.tt

    r971 r1162  
    11<!-- $Id$ --> 
    22 
    3 <div id="oform" class="oform"> 
    43[% attributes = form.attributes() %] 
    54[% IF attributes.0 %] 
     
    3433[% perm_denied %] 
    3534[% END %] 
    36 </div> 
  • trunk/LATMOS-Accounts-Web/root/html/includes/header.tt

    r1127 r1162  
    4444</div><!-- #header --> 
    4545 
    46 <div style="float: left;" id="sidebar"> 
     46<div id="sidebar"> 
    4747    [% INCLUDE 'includes/sidebar.tt' %] 
    4848    [% tpl = c.namespace _ '/side_menu.tt' %] 
     
    5454</div> 
    5555 
    56 <div id="mainbox" style="float: left;"> 
     56<div id="mainbox"> 
    5757 
  • trunk/LATMOS-Accounts-Web/root/html/includes/list_objects.tt

    r1131 r1162  
    3939    </td> 
    4040    <td><a href="[% c.uri_for('/' _ c.forward('/obj_to_uri', [ ofilter.otype ]), object.id) %]"> 
    41         <img src="[% c.uri_for('/static', 'icons', 'icon_edit.png') %]" 
    42             height="16" width="16" 
     41        <img src="[% c.uri_for('/static', 'images', 'icon_edit.png') %]" 
     42            class="editobj" 
    4343            alt="[% "edit " _ object.id | html %]"></a> 
    4444    [% object.id | html %]</td> 
  • trunk/LATMOS-Accounts-Web/root/html/includes/obj_prev_next.tt

    r971 r1162  
    11<!-- $Id$ --> 
    22 
    3 <div id="navigate" style="float: right"> 
     3<div id="navigate"> 
    44<p> 
    55[% nav = c.model('Accounts').object_navigate(objtype, objname) %] 
    66 
    7 [% IF nav.ofirst %] 
     7[% IF nav.ofirst -%] 
    88<a href="[% c.uri_for(nav.ofirst, subform) %]"> 
    9 <img src="[% c.uri_for('/static', 'icons/gtk-goto-first-ltr.png') %]" title="[% 
    10 nav.ofirst | html %]" alt="first"> 
    11 </a> 
    12 [% END %] 
     9<img src="[% c.uri_for('/static', 'images', 'gtk-goto-first-ltr.png') %]" title="[% 
     10nav.ofirst | html %]" alt="first" class="attr"></a> 
     11[%- END %] 
    1312 
    1413[% IF nav.oprev %] 
    1514<a href="[% c.uri_for(nav.oprev, subform) %]"> 
    16 <img src="[% c.uri_for('/static', 'icons/gtk-go-back-ltr.png') %]" title="[% 
    17 nav.oprev | html %]" alt="previous"> 
    18 </a> 
     15<img src="[% c.uri_for('/static', 'images', 'gtk-go-back-ltr.png') %]" title="[% 
     16nav.oprev | html %]" alt="previous" class="attr"></a> 
    1917[% END %] 
    2018 
    2119[% IF nav.onext %] 
    2220<a href="[% c.uri_for(nav.onext, subform) %]"> 
    23 <img src="[% c.uri_for('/static', 'icons/gtk-go-back-rtl.png') %]" title="[% 
    24 nav.onext | html %]" alt="next"> 
    25 </a> 
     21<img src="[% c.uri_for('/static', 'images', 'gtk-go-back-rtl.png') %]" title="[% 
     22nav.onext | html %]" alt="next" class="attr"></a> 
    2623[% END %] 
    2724 
    2825[% IF nav.olast %] 
    2926<a href="[% c.uri_for(nav.olast, subform) %]"> 
    30 <img src="[% c.uri_for('/static', 'icons/gtk-goto-first-rtl.png') %]" title="[% 
    31 nav.olast | html %]" alt="last"> 
    32 </a> 
     27<img src="[% c.uri_for('/static', 'images', 'gtk-goto-first-rtl.png') %]" title="[% 
     28nav.olast | html %]" alt="last" class="attr"></a> 
    3329[% END %] 
    3430</p> 
     
    4642</select> 
    4743<input type="image" alt="Go To" title="Aller à" src="[% 
    48 c.uri_for('/static', 'icons', 'gtk-jump-to-rtl.png') %]"> 
     44c.uri_for('/static', 'images', 'gtk-jump-to-rtl.png') %]" class="attrbutton"> 
    4945</p> 
    5046</form> 
  • trunk/LATMOS-Accounts-Web/root/html/includes/sidebar.tt

    r1148 r1162  
    11<form action="[% c.uri_for('/search') %]"> 
    22<input name="q" value="[% c.req.param('q') | html %]"> 
    3 <input type="image" name="" src="[% c.uri_for('/static', 'icons', 'gtk-find.png') %]" height="16" width="16"> 
     3<input type="image" name="" src="[% c.uri_for('/static', 'images', 'gtk-find.png') %]" height="16" width="16"> 
    44</form> 
    55<ul> 
Note: See TracChangeset for help on using the changeset viewer.