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.
 
 
 
 
 

31 lines
1.4 KiB

  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="styled-border aligned" alt="" src="${g.eve.image.character(g.auth.get_character_id(), 256)}"/>
  10. <div id="character-options" class="styled-border">
  11. <div id="style-options">
  12. <% cur_style = g.auth.get_character_prop("style") or g.config.get("style.default") %>
  13. % for style in g.config.get("style.enabled"):
  14. <%
  15. stitle = style.title()
  16. url = url_for('staticv', filename='images/style/{}.png'.format(style))
  17. %>
  18. <form action="${url_for('set_style', style=style)}" method="post"${' class="cur"' if style == cur_style else ''}>
  19. <input type="submit" title="${stitle}" value="${stitle}" data-style="${style}"${' disabled' if style == cur_style else ''}
  20. style="background-image: url('${url}')">
  21. </form>
  22. % endfor
  23. </div>
  24. </div>
  25. <span id="character-summary" class="aligned">
  26. ${g.auth.get_character_prop("name")}
  27. <span class="sep">[</span><a id="logout" title="Log out" href="${url_for('logout')}">log out</a><span class="sep">]</span>
  28. </span>
  29. </%block>
  30. ${next.body()}