A corporation manager and dashboard for EVE Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
584 B

  1. <%inherit file="_base.mako"/>
  2. <%block name="lefthead">
  3. ${parent.lefthead()}
  4. <nav class="aligned">
  5. Campaign: XYZ | Map | Intel | Members...
  6. </nav>
  7. </%block>
  8. <%block name="righthead">
  9. <img id="character-portrait" class="aligned" title="${g.auth.get_character_prop('name')}" alt="" src="${g.eve.image.character(g.auth.get_character_id(), 256)}"/>
  10. <span class="aligned">
  11. ${g.auth.get_character_prop("name")}
  12. [<a title="Log out" href="${url_for('logout')}">logout</a>] <!-- ... JS switch to a POST form -->
  13. </span>
  14. </%block>
  15. ${next.body()}