view.rhtml
2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<h1>
<%= _('Content management') %>
</h1>
<% button_bar(:style => 'margin-bottom: 1em;') do %>
<% parent_id = ((@article && @article.allow_children?) ? @article : nil) %>
<%= colorbox_button('new', _('New content'), :action => 'new', :parent_id => parent_id, :cms => true) %>
<%= button(:back, _('Back to control panel'), :controller => 'profile_editor', :action => "index") %>
<% end %>
<% if @article %>
<div id='article-full-path'>
<strong><%= _('Current folder: ') %></strong>
<%= link_to profile.identifier, :action => 'index' %>
<%= @article.hierarchy.map {|item| " / " + ((item == @article) ? item.name : link_to(item.slug, :id => item.id)) } %>
</div>
<% end %>
<table class='cms-articles'>
<%# header %>
<tr>
<th><%= _('Name') %></th>
<th><%= _('Type') %></th>
<th><%= _('Actions') %></th>
</tr>
<% if @article %>
<tr>
<td>
<% if @article.parent %>
<%= link_to '.. (' + _('parent folder') + ')', {:action => 'view', :id => @article.parent.id}, :class => 'icon-parent-folder' %>
<% else %>
<%= link_to '.. (' + _('parent folder') + ')', {:action => 'index'}, :class => 'icon-parent-folder' %>
<% end %>
</td>
<td><%= Folder.short_description %></td>
<td> </td>
</tr>
<% end %>
<% @articles.each do |article| article = FilePresenter.for article %>
<tr>
<td>
<%= link_to_article(article) %>
</td>
<td>
<%= article.respond_to?(:short_description) ?
article.short_description :
article.class.short_description %>
</td>
<td class="article-controls">
<%= expirable_button article, :edit, _('Edit'), {:action => 'edit', :id => article.id} if !remove_content_button(:edit) %>
<%= button_without_text :eyes, _('Public view'), article.view_url %>
<%= display_spread_button(profile, article) unless article.folder? || remove_content_button(:spread)%>
<% if !environment.enabled?('cant_change_homepage') && !remove_content_button(:home) %>
<%= expirable_button article, :home, _('Use as homepage'), { :action => 'set_home_page', :id => article.id }, :method => :post %>
<% end %>
<%= display_delete_button(article) if !remove_content_button(:delete) %>
</td>
</tr>
<% end %>
</table>
<%= pagination_links @articles, {:param_name => 'npage', :page_links => true} %>