forked from bofh/fetsite
20 lines
349 B
Plaintext
Executable File
20 lines
349 B
Plaintext
Executable File
|
|
<% if flash[:notice] %>
|
|
<div class="notice alert alert-info"><%= flash[:notice] %></div>
|
|
<% end %>
|
|
<h1>Admin Panel</h1>
|
|
|
|
<ul class="nav">
|
|
<li>
|
|
<%= link_to '<i class="icon-user"></i>'.html_safe + 'Userverwaltung',:controller =>"users",:action => "index" %>
|
|
</li>
|
|
<li>
|
|
<%= link_to '<i class="icon"> </i>'.html_safe + ' ' %>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|