Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_form.html.haml « projects « teams « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2c89b0c36bce601e58a7c535600acf5e5dbbe47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
= form_tag team_project_path(@team, @project), method: :put do
  -if @project.errors.any?
    .alert.alert-error
      %ul
        - @project.errors.full_messages.each do |msg|
          %li= msg

  .clearfix
    %label Max access for Team members:
    .input
      = select_tag :greatest_project_access, options_for_select(UserTeam.access_roles, @team.max_project_access(@project)), class: "project-access-select chosen span3"

  %br
  .actions
    = submit_tag 'Save', class: "btn btn-save"
    = link_to 'Cancel', :back, class: "btn btn-cancel"