aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/admin/posts/_form.html.erb
blob: 5cb061ecc3adc552d91223c59a1282b99eec4360 (plain) (blame)
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
<%= form_for [refinery, :blog_admin, @post] do |f| -%>
  <%= render "/refinery/admin/error_messages",
             :object => f.object,
             :include_object_name => true %>

  <%= render '/refinery/admin/locale_picker',
              :current_locale => Globalize.locale %>

  <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>

  <%= render '/refinery/admin/form_advanced_options_menu', :f => f %>

  <div class='field'>
    <%= f.label :tag_list, t('refinery.blog.shared.tags.title') -%>
    <%= f.text_field :tag_list, value: @post.tag_list.to_s, :class => 'larger' -%>
  </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::Blog.user_class.all, :id, :username %>
        </span>
      </div>

    </div>
    <div class='hemisquare right_side'>
      <%= render '/seo_meta/form', :form => f %>
    </div>
  </div>
  <%= render "/refinery/admin/form_actions",
             :f => f,
             :continue_editing => true,
             :delete_title => t('delete', :scope => 'refinery.blog.admin.posts.post'),
             :before_delete_button => (link_to(t('delete_translation', :scope => 'refinery.blog.admin.posts.post'),
                                               refinery.delete_translation_blog_admin_post_path(@post, :locale_to_delete => Globalize.locale),
                                               :method => :post,
                                               :data => {
                                                 :confirm => t('delete_translation_confirmation', :scope => 'refinery.blog.admin.posts.post')
                                               },
                                               :class => "button confirm-delete") if Refinery::I18n.frontend_locales.many? && @post.translations.size > 1) %>
<% 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 => '#post_tag_list',
           :url => refinery.tags_blog_admin_posts_url %>