library.html.erb 615 Bytes
<div id="dspace_library">

  <% if dspace_library.allow_create?(user) %>

  <div id="actions">
    <%= content_tag('a', :href => url_for({:controller => 'dspace_plugin_myprofile', :action => 'new', :type => "DspacePlugin::Communityy", :parent_id => dspace_library.id}), :class => 'button with-text icon-add') do %>
          <%= _("Add a %s") % DspacePlugin::Communityy.short_description %>
    <% end %>
  </div>

  <% end %>

  <% communities = dspace_library.communities %>

  <ul id="sortable" class="communities_list">
    <%= render :partial => 'community_item', :collection => communities %>
  </ul>

</div>