54 lines
2.1 KiB
Plaintext
54 lines
2.1 KiB
Plaintext
.block
|
|
.secondary-navigation
|
|
%ul.wat-cf
|
|
%li.first= link_to t("layout.collaborators.list"), project_collaborators_path(@project)
|
|
%li.active= link_to t("layout.collaborators.add"), add_project_collaborators_path(@project)
|
|
.content
|
|
.inner
|
|
= form_tag do
|
|
%h2.title= t("layout.users.list_header")
|
|
%table.table
|
|
%tr
|
|
%th.first ID
|
|
%th= t("activerecord.attributes.user.name")
|
|
%th= t("activerecord.attributes.user.email")
|
|
%th= t("activerecord.attributes.user.uname")
|
|
%th.last= t("layout.collaborators.add")
|
|
- @users.each do |user|
|
|
%tr{:class => cycle("odd", "even")}
|
|
%td
|
|
= user.id
|
|
%td
|
|
= link_to user.name, user_path(user)
|
|
%td
|
|
= user.email
|
|
%td
|
|
= user.uname
|
|
%td.last
|
|
= check_box_tag "user[#{user.id}]", '1', (@project.collaborators.include? user) ? :checked : nil
|
|
= label_tag "user[#{user.id}]", t("layout.collaborators.add")
|
|
%h2.title= t("layout.groups.list_header")
|
|
%table.table
|
|
%tr
|
|
%th.first ID
|
|
%th= t("activerecord.attributes.group.name")
|
|
%th= t("activerecord.attributes.group.uname")
|
|
%th.last= t("layout.collaborators.add")
|
|
- @groups.each do |group|
|
|
%tr{:class => cycle("odd", "even")}
|
|
%td
|
|
= group.id
|
|
%td
|
|
= link_to group.name, group_path(group)
|
|
%td
|
|
= group.uname
|
|
%td.last
|
|
= check_box_tag "group[#{group.id}]", '1', (@project.groups.include? group) ? :checked : nil
|
|
= label_tag "group[#{group.id}]", t("layout.collaborators.add")
|
|
.group.navform.wat-cf
|
|
%button.button{:type => "submit"}
|
|
= image_tag("choose.png", :alt => t("layout.save"))
|
|
= t("layout.save")
|
|
%span.text_button_padding= t("layout.or")
|
|
= link_to t("layout.cancel"), project_collaborators_path(@project), :class => "text_button_padding link_button"
|