Sha256: b96f9ea5ac13ca194b2e3e78b501a8152ff8ca83cd0bfc48eb244112a1f7891d
Contents?: true
Size: 1.15 KB
Versions: 31
Compression:
Stored size: 1.15 KB
Contents
<% content_for :html_head do %> <%= stylesheet_link_tag 'cms/form_layout' %> <% end %> <% page_title "Assign Page '#{@page.name}'" %> <% content_for :functions do %> <h1><%=h @page_title %></h1> <%= link_to(span_tag("Back To Page"), @page.path, :class => "button") %> <br clear="all"/> <% end %> <% form_for([:cms, @page, @task]) do |f| %> <%= f.error_messages %> <div class="fields text_fields"> <%= f.label :assigned_to_id, "Assign To" %> <%= f.collection_select :assigned_to_id, User.active.able_to_edit_or_publish_content.all(:order => "first_name, last_name, login"), :id, :full_name_with_login, :include_blank => true, :tabindex => next_tabindex %> </div> <div class="fields text_fields"> <%= f.label :due_date %> <%= f.date_picker :due_date %> <div class="instructions">Leave blank for no due date</div><br clear="all" /> </div> <div class="fields text_editor_fields"> <%= f.label :comment %> <br/> <%= f.text_area :comment, :tabindex => next_tabindex %> </div> <div class="buttons"> <%= lt_button_wrapper(f.submit("Save", :class => "submit", :tabindex => next_tabindex)) %> </div> <% end %>
Version data entries
31 entries across 31 versions & 9 rubygems