Sha256: 390d4435bd5ebd10ca803a85dcdfb71170379ce133cd71fb1043c7356ad12882

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

- in_section :people
- content_for :title do
  #{@person}

= render "people/header"

.row
  .span12
    = icon_link_to("View Record", polymorphic_path(@person), 'fa-share-alt', 'btn', '')

.row
  .span2
    %h4 Relations
    %ul
      %li= link_to("All", polymorphic_url([@person, :relationships]))
      - relationship_counts_for(@person).each do |relation, count|
        %li== #{link_to("#{relation.description.titleize.pluralize}", polymorphic_url([@person, :relationships], :relation_id => relation.id))} (#{count})

  .span10
    %h3== #{@relation} Relationships
    %table.table.people-list
      - @relationships.each do |relationship|
        %tr
          %td.starred.starable{"data-person-id" => relationship.person.id, "data-type" => 'relationship', "data-action-id" => relationship.id, :class => (relationship.starred? ? "active" : "not-active") }
            ✭
          %td.name
            = link_to_person(relationship.other)
            %span.muted= relationship.relation.description.titleize
            %br
            = relationship.other.email
          %td.tags
            = render :partial => 'shared/tags_uneditable', :locals => { :tag_list => relationship.other.tag_list }

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
artfully_ose-1.2.0 app/views/relationships/index.html.haml
artfully_ose-1.2.0.beta.1 app/views/relationships/index.html.haml
artfully_ose-1.2.0.alpha.2 app/views/relationships/index.html.haml
artfully_ose-1.2.0.alpha.1 app/views/relationships/index.html.haml
artfully_ose-1.2.0.pre.27 app/views/relationships/index.html.haml
artfully_ose-1.2.0.pre.26 app/views/relationships/index.html.haml
artfully_ose-1.2.0.pre.24 app/views/relationships/index.html.haml