Sha256: b214b1661ffc79715b60602da9a14e750e7c8aa716fed8c123da18ec4e8e57ef

Contents?: true

Size: 1.46 KB

Versions: 7

Compression:

Stored size: 1.46 KB

Contents

<% css do %>
  <%= theme_css 'pages/admin_index.css', :media => 'screen' %>
<% end %>

<% page_title 'Manage Educational Institutions' %>

<%= render :partial => 'search', :locals => { :form_url => admin_schools_path, :params => params } %>

<%= render_widget :paginated_list, :display, {
  :collection => @schools,
  :entry_name => 'educational institution',
  :css_class => "",
  :id => "schools-found",
  :list_renderer => [
    :datatable,
    {
      :columns => [
        {
          :label => "Name",
          :content => lambda{|item| link_to item.name, admin_school_path(item) },
          :sort => 'name',
          :width => "200px"
        },
        {
          :label => "City",
          :content => :city,
          :sort => 'city',
          :width => "150px"
        },
        {
          :label => "State",
          :content => :state,
          :sort => 'state',
        },
        {
          :label => "Zipcode",
          :content => :zipcode,
          :sort => 'zipcode'
        },
        {
          :label => "Approved",
          :content => lambda{ |item| item.approved ? 'Yes' : 'No' },
          :sort => 'approved'
        },
        :actions => [
          :edit, 
          :delete
        ]
      ],
      :actions_are_admin => true,
      :css_class => 'table-blue-zebra',
      :sort_column => sort_column
    }
  ],
  :header => {
    :css_class => 'plain'
  },
  :navigation => {}
} %>
<%= link_to 'New Educational Institution', new_admin_school_path %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
scidea-schools-1.0.6 app/views/admin/schools/index.html.erb
scidea-schools-1.0.5 app/views/admin/schools/index.html.erb
scidea-schools-1.0.4 app/views/admin/schools/index.html.erb
scidea-schools-1.0.3 app/views/admin/schools/index.html.erb
scidea-schools-1.0.2 app/views/admin/schools/index.html.erb
scidea-schools-1.0.1 app/views/admin/schools/index.html.erb
scidea-schools-1.0.0 app/views/admin/schools/index.html.erb