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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
<%= form_for [main_app, :refinery_blog_admin, @post] do |f| -%>
<%= render :partial => "/refinery/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 ui-state-active'>
<%= link_to t('body', :scope => 'activerecord.attributes.refinery/blog_post'), "#page_part_body" %>
</li>
<li class='ui-state-default'>
<%= link_to t('teaser', :scope => 'activerecord.attributes.refinery/blog_post'), "#page_part_teaser" %>
</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 'form_part', :f => f, :part_index => (part_index += 1) -%>
<%= render 'teaser_part', :f => f, :part_index => (part_index += 1) if f.object.respond_to?(:custom_teaser) -%>
<% Refinery::Blog.tabs.each_with_index do |tab, tab_index| %>
<div class='page_part' id='<%= "custom_tab_#{tab_index}" %>'>
<%= render tab.partial, :f => f %>
</div>
<% end %>
</div>
</div>
</div>
<div class='field'>
<%= f.label :tag_list, t('refinery.blog.shared.tags.title') -%>
<%= 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('title', :scope => 'refinery.blog.admin.submenu.categories') %></h3>
<ul class='blog_categories'>
<% @categories.each do |category| %>
<li>
<%= check_box_tag 'post[category_ids][]', category.id,
@post.categories.include?(category),
:id => (id="post_category_ids_#{category.id}") %>
<%= label_tag 'post[category_ids][]', category.title,
:class => 'stripped',
:for => id %>
</li>
<% end %>
</ul>
<h3><%= t('.published_at') %></h3>
<%= f.datetime_select :published_at %>
<div class='field'>
<span class='label_with_help'>
<%= f.label :custom_url, t('.custom_url') %>
<%= refinery_help_tag t('.custom_url_help') %>
</span>
<%= f.text_field :custom_url, :class => "widest" %>
</div>
<div class='field'>
<span class='label_with_help'>
<%= f.label :source_url_title, t('.source_url_title') %>
<%= refinery_help_tag t('.source_url_title_help') %>
</span>
<%= f.text_field :source_url_title, :class => "widest" %>
</div>
<div class='field'>
<span class='label_with_help'>
<%= f.label :source_url, t('.source_url') %>
<%= refinery_help_tag t('.source_url_help') %>
</span>
<%= f.text_field :source_url, :class => "widest" %>
</div>
<div class='field'>
<span class='label_with_help'>
<%= f.label :user_id, t('.author') %>
<%= refinery_help_tag t('.author_help') %>
<br/>
<%= f.collection_select :user_id, ::Refinery::User.all, :id, :username %>
</span>
</div>
</div>
<div class='hemisquare right_side'>
<%= render '/seo_meta/form', :form => f %>
</div>
</div>
<%= render :partial => "/refinery/admin/form_actions",
:locals => {
:f => f,
:continue_editing => true,
:delete_title => t('delete', :scope => 'refinery.blog.admin.posts.post')
} %>
<% end -%>
<% content_for :stylesheets, stylesheet_link_tag('refinery/blog/backend') %>
<% content_for :javascripts, javascript_include_tag('refinery/blog/backend') %>
<%= render 'refinery/shared/admin/autocomplete', :dom_id => '#blog_post_tag_list', :url => main_app.tags_refinery_blog_admin_posts_url %>
|