Sha256: 0974f53309c08646dbed26220d10a4b4d0ffe015c343bf214b1d4d47702896eb

Contents?: true

Size: 1012 Bytes

Versions: 11

Compression:

Stored size: 1012 Bytes

Contents

<div class="with_padding">
	<%- if @elements.blank? -%>
	<p id="trash_empty_notice" <%= @elements.blank? ? '' : 'style="display: none"' %>>
		<%= _('Your trash is empty') %>
	</p>
	<%- else -%>
	<div class="info">
		<%= render_icon('info') %>
		<%= _('Drag an element over to the element window to restore it.') %>
	</div>
	<div id="trash_items">
		<%- @elements.each do |element| -%>
		<%= render :partial => 'admin/elements/element', :object => element, :locals => {:draggable => !@allowed_elements.detect { |e| e['name'] == element.name }.nil?} %>
		<%- end -%>
		<p>
			<%= link_to_confirmation_window(_('clear trash'), _('Do you really want to clear the trash?'), clear_admin_trash_path(:page_id => @page.id), :class => 'button') %>
		</p>
	</div>
	<%- end -%>
</div>
<script type="text/javascript" charset="utf-8">
	<%- cells_items = {} %>
	<%- @elements.each { |e| cells_items["element_#{e.id}"] = e.belonging_cellname };  -%>
	Alchemy.DraggableTrashItems(<%= cells_items.to_json.html_safe %>);
</script>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
alchemy_cms-2.0 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.rc6 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.rc5 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.rc4 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.rc3 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.rc2 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.rc1 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.pre5 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.pre4 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.pre3 app/views/admin/trash/index.html.erb
alchemy_cms-2.0.pre2 app/views/admin/trash/index.html.erb