Ignore:
Timestamp:
07/05/10 14:51:56 (23 months ago)
Author:
dart
Message:

LoReality?:
o CSS custo
o Begin i18n
o Fill some new fields in mission
o Fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/loreality/loreality/templates/derived/page/squadron.html

    r2104 r2105  
    44 
    55<h2>${c.squadron.name}</h2> 
     6<h3>Description</h3> 
    67<p>Plane is ${c.squadron.plane}</p> 
     8<h3>Pilots</h3> 
    79% for pilot in c.squadron.pilots: 
    810    <li><a href=${h.url_for(controller='pilot', action='view',id=pilot.id) }>${pilot.name}</a> 
    911    %if h.auth.authorized(h.auth.is_leader): 
    10     <a href=${h.url_for(pilotid=pilot.id, controller='squadron', action='removepilot',id=c.squadron.id) }>[Remove]</a></li> 
     12    <a href=${h.url_for(pilotid=pilot.id, controller='squadron', action='removepilot',id=c.squadron.id) } class="action">[Remove]</a></li> 
    1113    %endif 
    1214% endfor 
    1315% if h.auth.authorized(h.auth.is_leader): 
    1416${campaign.add_pilot_to_squadron(c.squadron.id, c.available_pilots)} 
    15 <a href=${h.url_for(controller='squadron', action='edit',id=c.squadron.id) }>[Edit]</a></li> 
     17<a href=${h.url_for(controller='squadron', action='edit',id=c.squadron.id) } class="action">[Edit]</a></li> 
    1618%endif 
    17 <a href=${h.url_for(controller='squadron', action='index') }>[All squadron]</a></li> 
     19<hr /> 
     20<a href=${h.url_for(controller='squadron', action='index') } class="action">[All squadron]</a></li> 
    1821 
Note: See TracChangeset for help on using the changeset viewer.