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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<%= form_for [:admin, @blog_post] do |f| -%>
<%= render :partial => "/shared/admin/error_messages",
:locals => {
:object => f.object,
:include_object_name => true
} %>
<div class='field'>
<%= f.label :title -%>
<%= f.text_field :title, :class => 'larger widest' -%>
</div>
<div class='field'>
<div id='page-tabs' class='clearfix ui-tabs ui-widget ui-widget-content ui-corner-all'>
<ul id='page_parts'>
<li class='ui-state-default'>
<%= link_to "Body", "#page_part_body" %>
</li>
<% Refinery::Blog.tabs.each_with_index do |tab, tab_index| %>
<li class='ui-state-default' id="custom_<%= tab.name %>_tab">
<%= link_to tab.name.titleize, "#custom_tab_#{tab_index}" %>
</li>
<% end %>
</ul>
<div id='page_part_editors'>
<% part_index = -1 %>
<%= render :partial => 'form_part',
:locals => {
:f => f,
:part_index => (part_index += 1),
} -%>
<% Refinery::Blog.tabs.each_with_index do |tab, tab_index| %>
<div class='page_part' id='<%= "custom_tab_#{tab_index}" %>'>
<%= render :partial => tab.partial, :locals => {:f => f} %>
</div>
<% end %>
</div>
</div>
</div>
<div class='field'>
<%= f.label :tag_list, "Tags" -%>
<%= f.text_field :tag_list, :class => 'larger' -%>
</div>
<div id='more_options_field'>
<p>
<%= link_to t('.advanced_options'), "#",
:id => 'toggle_advanced_options',
:title => t('.toggle_advanced_options') %>
</p>
<span id='draft_field'>
<%= f.check_box :draft %>
<%= f.label :draft, t('.save_as_draft'), :class => "stripped" %>
</span>
</div>
<div id='more_options' style="display:none;">
<div class="hemisquare">
<h3><%= t('admin.blog.submenu.categories.title') %></h3>
<ul class='blog_categories'>
<% @blog_categories.each do |category| %>
<li>
<%= check_box_tag 'blog_post[category_ids][]', category.id,
@blog_post.categories.include?(category),
:id => (id="blog_post_category_ids_#{category.id}") %>
<%= label_tag 'blog_post[category_ids][]', category.title,
:class => 'stripped',
:for => id %>
</li>
<% end %>
</ul>
<h3><%= t('.published_at') %></h3>
<%= f.datetime_select :published_at %>
</div>
<div class='hemisquare right_side'>
<%= render :partial => '/seo_meta/form', :locals => {:form => f} %>
</div>
</div>
<%= render :partial => "/shared/admin/form_actions",
:locals => {
:f => f,
:continue_editing => true,
:delete_title => t('admin.blog.posts.post.delete')
} %>
<% end -%>
<% if Refinery.version < '0.9.9' %>
<% content_for :head do %>
<%= render :partial => 'form.css' %>
<%= render :partial => 'form.js' %>
<% end %>
<% else %>
<% content_for :stylesheets, render(:partial => 'form.css') -%>
<% content_for :javascripts, render(:partial => 'form.js') -%>
<% end %>
|