agenda-libre-ruby/app/views/orgas/index.html.haml

61 lines
2.0 KiB
Plaintext
Raw Normal View History

= render 'search'
= render '/regions/selector'
2015-02-15 17:10:17 +01:00
%h2
%em.fa.fa-users
= title t 'orgas.search.title', entity: Orga.model_name.human
%table.list.autopagerize_page_element
%thead
%th.kind= sort_link @search, :kind_name, Orga.human_attribute_name(:kind)
%th.name= sort_link @search, :name
%th.city= sort_link @search, :city
%th.department= sort_link @search, :department
%th.region= sort_link @search, :region_name, Orga.human_attribute_name(:region)
%th.tags= sort_link @search, :tags, Orga.human_attribute_name(:tags)
%th.updated_at= sort_link @search, :updated_at, Orga.human_attribute_name(:updated_at)
%th.url/
%th.diaspora/
%th.feed/
%th.view/
%th.edit/
2015-02-15 17:10:17 +01:00
%tbody
- @orgas.each do |orga|
%tr{ class: orga.active ? 'active' : 'inactive' }
2015-02-15 17:10:17 +01:00
%td
- if orga.kind
%em.fa{ class: "fa-#{orga.kind.icon}",
title: Kind.human_attribute_name("name_#{orga.kind.name}") }
%td
= orga.name
2015-02-15 17:10:17 +01:00
- if orga.url =~ /^http/
= image_tag orga.url + '/favicon.ico', alt: '', class: :favicon
2015-05-25 11:42:53 +02:00
%td= orga.city
%td= orga.department
%td= orga.region
%td= orga.tags
2015-02-15 17:10:17 +01:00
%td
- if orga.updated_at.present?
= l orga.updated_at.to_date
%td
- if orga.url.present?
= link_to orga.url do
%em.fa.fa-external-link(title="#{Orga.human_attribute_name(:url)}")
%td
- if orga.diaspora.present?
= link_to orga.diaspora do
%em.fa.fa-bullhorn(title="#{Orga.human_attribute_name(:diaspora)}")
%td
- if orga.feed.present?
= link_to orga.feed do
%em.fa.fa-rss(title="#{Orga.human_attribute_name(:feed)}")
%td
= link_to orga_path(orga, q: params[:q], page: params[:page]) do
%em.fa.fa-eye
%td
= link_to edit_orga_path orga do
%em.fa.fa-pencil
2015-02-15 17:10:17 +01:00
= paginate @orgas