diff --git a/app/views/domains/index.html.erb b/app/views/domains/index.html.erb index b9e32cb..a75eb45 100644 --- a/app/views/domains/index.html.erb +++ b/app/views/domains/index.html.erb @@ -1,34 +1,34 @@
<%= link_to group.name, group_path(group) %> | Controls | ||
---|---|---|---|
<%= link_to domain.name, domain %> | <% if domain.reverse? %> <%= abbr_glyph('chevron-left', 'Reverse') %> <% else %> <%= abbr_glyph('chevron-right', 'Forward') %> <% end %> <% if domain.slave? %> <%= abbr_glyph('link', 'Slave') %> <% end %> | <%= link_to_edit edit_domain_path(domain) %> | <%= link_to_destroy domain, method: :delete, data: { confirm: 'Are you sure?' } %> |
- <%= link_to 'New Domain »'.html_safe, new_domain_path, class: 'btn btn-lg btn-primary' %> + <%= link_to 'Add Domain', new_domain_path, class: 'btn btn-primary' %>
diff --git a/app/views/groups/show.html.erb b/app/views/groups/show.html.erb index 76610dc..14d38c0 100644 --- a/app/views/groups/show.html.erb +++ b/app/views/groups/show.html.erb @@ -1,74 +1,78 @@ <% content_for :more_breadcrumbs do %>Domain | Controls | ||
---|---|---|---|
<%= link_to domain.name, domain %> | <% if domain.reverse? %> <%= abbr_glyph('chevron-left', 'Reverse') %> <% else %> <%= abbr_glyph('chevron-right', 'Forward') %> <% end %> <% if domain.slave? %> <%= abbr_glyph('link', 'Slave') %> <% end %> | <%= link_to_edit edit_domain_path(domain) %> | <%= link_to_destroy domain, method: :delete, data: { confirm: 'Are you sure?' } %> |
+ <%= link_to 'Add Domain', new_domain_path, class: 'btn btn-primary' %> +
+Member | Controls |
---|---|
<%= membership.user.email %><%= " (you)" if current_user == membership.user %> | <%= link_to_destroy destroy_member_group_path(@group, membership.user_id), method: :delete %> |
<%= bootstrap_form_tag(url: create_member_group_path(@group), layout: :inline) do |f| %> <%= f.text_field :email, prepend: 'Add Member', hide_label: true, id: 'js-search-member', data: { group: @group.id } %> <%= f.submit 'Add', class: 'btn btn-primary' %> <% end %>