- set_orga_meta %h2 - if @orga.kind %em.fa{ class: "fa-#{@orga.kind.icon}", title: Kind.human_attribute_name("name_#{@orga.kind.name}") } = title @orga.name = image_tag @orga.url + '/favicon.ico', alt: '', class: :favicon = render 'aside' if controller.controller_name == 'orgas' %p.full_address - if @orga.place_name.present? %span= @orga.place_name - if @orga.address.present? %span= @orga.address %span= link_to @orga.city, "https://fr.wikipedia.org/wiki/#{url_encode @orga.city}" %span= link_to @orga.region.try(:name), "https://fr.wikipedia.org/wiki/#{url_encode @orga.region.try :name}" - if @orga.latitude && @orga.longitude .orga#map{ data: { url: maps_path(format: :json).to_s, latitude: @orga.latitude.to_s, longitude: @orga.longitude.to_s } } %h3= t '.description' .description = description sanitize @orga.description, tags: %w[p h1 h2 h3 h4 br table tr th td ul ol li a strong b em i img sub sup span], attributes: %w[href src width height style title] %dl - if @orga.department.present? %dt %em.fa.fa-puzzle-piece = Orga.human_attribute_name :department %dd= @orga.department - if @orga.url.present? %dt %em.fa.fa-external-link-alt = Orga.human_attribute_name :url %dd= link_to @orga.url, sanitize(@orga.url) - if @orga.diaspora.present? %dt %em.fa.fa-bullhorn = Orga.human_attribute_name :diaspora %dd= link_to @orga.diaspora, @orga.diaspora - if @orga.feed.present? %dt %em.fa.fa-rss = Orga.human_attribute_name :feed %dd= link_to @orga.feed, @orga.feed - if @orga.contact.present? %dt %em.fa.fa-envelope = Event.human_attribute_name :contact %dd= mail_to @orga.contact, nil, encode: (request.format == 'text/html' ? :javascript : nil), replace_at: ' CHEZ ', replace_dot: ' POINT ' - if @orga.tags? %dt %em.fa.fa-tags = Event.human_attribute_name :tags %dd - @orga.tags.each do |tag| = link_to tag, tag_path(tag.name), rel: :tag %dt %em.fa.fa-heartbeat = Orga.human_attribute_name :active %dd= t @orga.active.to_s - if @orga.updated_at %dt %em.fa.fa-calendar = Orga.human_attribute_name :updated_at %dd= l @orga.updated_at.to_date, format: :long - if @events_future && @events_future.any? %dt %em.fa.fa-forward = t '.future' %dd = link_to tag_path @orga.name_as_tag do = t '.count', count: @events_future.count - if @events_future && @events_past.any? %dt %em.fa.fa-backward = t '.past' %dd = link_to tag_path @orga.name_as_tag do = t '.count', count: @events_past.count