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.
 
 
 
 
 

29 lines
558 B

  1. <% provide(:title, 'Admin') %>
  2. <h1>Admin Settings</h1>
  3. <section id="general">
  4. <h2>General</h2>
  5. <%= form_tag do %>
  6. <table>
  7. <% Calefaction::Settings::SETTINGS.each do |s| %>
  8. <tr>
  9. <td><%= label_tag("settings[#{s[:key]}]", s[:label]) %></td>
  10. <td><%= setting_tag s %></td>
  11. </tr>
  12. <% end %>
  13. <tr>
  14. <td colspan="2"><%= submit_tag('Update') %></td>
  15. </tr>
  16. </table>
  17. <% end %>
  18. </section>
  19. <section id="tools">
  20. <h2>Tools</h2>
  21. </section>
  22. <section id="users">
  23. <h2>Users</h2>
  24. </section>