A corporation manager and dashboard for EVE Online
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

25 wiersze
1.1 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. % for style in g.config.get("style.enabled"):
  13. <form action="${url_for('set_style', style=style)}" method="post">
  14. <input type="submit" title="${style.title()}" value="${style}" style="background-image: url('${url_for('staticv', filename='images/style/{}.png'.format(style))}')">
  15. </form>
  16. % endfor
  17. </div>
  18. </div>
  19. <span id="character-summary" class="aligned">
  20. ${g.auth.get_character_prop("name")}
  21. <span class="sep">[</span><a id="logout" title="Log out" href="${url_for('logout')}">log out</a><span class="sep">]</span>
  22. </span>
  23. </%block>
  24. ${next.body()}