<%= SITE_TITLE %>
User Actions
<%= help_link('user_admin') %>
<%= link_to "Suggest a New Resource for the #{SITE_TITLE}", :controller => 'resource', :action => 'new' %>
<%= help_link('new_resource') %>
Manage my Resources
<%= help_link('manage_resources') %>
<% if @owned_resources && @owned_resources.length > 0 # FIX -%>
<% @owned_resources.sort.each do |resource| %>
<%= link_to resource.name, :controller => 'resource', :action => 'show', :id=>resource %>
|
<%= link_to "Edit", :controller => 'resource', :action => 'edit', :id=>resource %>
|
<%= link_to "Delete", :controller => 'admin', :action => 'delete', :id=>resource %>
<% end %>
<% else %>
You are not managing any resources.
<% end %>