Sha256: c1e1b535cd32643c5e037937c224dcd3ea99a3d40cd4c35a4d253782496d2931

Contents?: true

Size: 859 Bytes

Versions: 2

Compression:

Stored size: 859 Bytes

Contents

.row
  .col-sm-10
    %h2.border 
      Subscription groups
  
  .col-sm-2
    %ul.nav.nav-secondary.pull-right
      %li= link_to "NEW Group", new_webui_subscription_group_path
    
.row
  .col-sm-12

    %table.table.table-listing 
      %thead 
        %tr 
          %th
            Name
          %th 
            Actions
      %tbody
        - if @subscription_groups.any?
          - @subscription_groups.each do |group| 
            %tr 
              %td 
                - if @subscription_group != group
                  = link_to group.title, webui_subscription_group_path(group)
                - else
                  %strong= group.title
              %td 
                - if @subscription_group != group
                  = link_to 'Show', webui_subscription_group_path(group)

        - else
          No subscription groups
      %tfoot

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
maily_herald-webui-0.9.0 app/views/maily_herald/webui/subscription_groups/index.html.haml
maily_herald-webui-0.8.0 app/views/maily_herald/webui/subscription_groups/index.html.haml