Sha256: a1d222b1228fc2d9d553a83cdacc1c8a6ffbb19eb501b91da38d9a3b59d7e603

Contents?: true

Size: 1.64 KB

Versions: 6

Compression:

Stored size: 1.64 KB

Contents

<div class="content_editor" id="<%= content_dom_id(content) %>">
	<label style="display: inline">
		<%= render_content_name(content) %>
	</label>
	<div class="file" id="file_<%= content.id %>">
		<div class="file_icon">
		<%- if content.ingredient.nil? -%>
			<%= link_to_overlay_window("",
				archive_overlay_admin_attachments_path(
					:content_id => content.id,
					:only => options[:file_assign_show_only],
					:except => options[:file_assign_do_not_show],
					:options => options
				),
				{
					:title => _('assign_file'),
					:size => '520x400',
					:resizable => 'true'
				},
				:class => 'assign_file',
				:title => _('assign_file')
			) %>
		<%- else -%>
			<%= render_icon(content.ingredient.icon_css_class) %>
		<%- end -%>
		</div>
		<div class="file_name">
			<%= content.ingredient.name rescue "&#x2190;" + _('assign_file_from_archive') %>
		</div>
		<%- unless content.ingredient.nil? -%>
		<div class="essence_file_tools">
			<%= link_to_overlay_window("",
				archive_overlay_admin_attachments_path(
					:content_id => content.id,
					:only => options[:file_assign_show_only],
					:except => options[:file_assign_do_not_show],
					:options => options
				),
				{
					:title => _('assign_file'),
					:size => '520x400',
					:resizable => 'true'
				},
				:class => 'assign_file',
				:title => _('assign_file')
			) %>
			<%= link_to_overlay_window("",
				url_for(
					:controller => 'essence_files',
					:action => 'edit',
					:id => content
				),
				{
					:title => _('edit_file_properties'),
					:size => '365x150'
				},
				:class => 'edit_file',
				:title => _('edit_file_properties')
			) %>
		</div>
		<%- end -%>
	</div>
</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
alchemy_cms-2.0.rc2 app/views/essences/_essence_file_editor.html.erb
alchemy_cms-2.0.rc1 app/views/essences/_essence_file_editor.html.erb
alchemy_cms-2.0.pre5 app/views/essences/_essence_file_editor.html.erb
alchemy_cms-2.0.pre4 app/views/essences/_essence_file_editor.html.erb
alchemy_cms-2.0.pre3 app/views/essences/_essence_file_editor.html.erb
alchemy_cms-2.0.pre2 app/views/essences/_essence_file_editor.html.erb