edit.html.haml 6.3 KB
Newer Older
1 2 3
.project-edit-container
  .project-edit-errors
  .project-edit-content
4 5 6
    %div
      %h3.page-title
        Project settings:
7
      %p.light Some settings, such as "Transfer Project", are hidden inside the danger area below
8
      %hr
9 10 11
      .form-holder
        = form_for(@project, remote: true) do |f|
          %fieldset
12
            .control-group.project_name_holder
13
              = f.label :name do
D
David Pursehouse 已提交
14
                Project name
15
              .controls
16 17 18
                = f.text_field :name, placeholder: "Example Project", class: "span5"


19
            .control-group
20 21 22
              = f.label :description do
                Project description
                %span.light (optional)
23
              .controls
24
                = f.text_area :description, placeholder: "Awesome project", class: "span5", rows: 3, maxlength: 250
25

26
            - if @project.repository.exists? && @project.repository.branch_names.any?
27
              .control-group
28
                = f.label :default_branch, "Default Branch"
29
                .controls= f.select(:default_branch, @repository.branch_names, {}, {class: 'chosen'})
30 31


32
          = render "visibility_level", f: f, visibility_level: @project.visibility_level, can_change_visibility_level: can?(current_user, :change_visibility_level, @project)
33 34 35 36 37 38 39 40

          %fieldset.features
            %legend
              Labels:
            .control-group
              = f.label :label_list, "Labels", class: 'control-label'
              .controls
                = f.text_field :label_list, maxlength: 2000, class: "span5"
J
Jacob Vosmaer 已提交
41
                %p.hint Separate labels with commas.
42 43 44 45 46 47 48 49 50 51 52 53 54

          %fieldset.features
            %legend
              Features:
            .control-group
              = f.label :issues_enabled, "Issues", class: 'control-label'
              .controls
                = f.check_box :issues_enabled
                %span.descr Lightweight issue tracking system for this project

            - if Project.issues_tracker.values.count > 1
              .control-group
                = f.label :issues_tracker, "Issues tracker", class: 'control-label'
55
                .controls= f.select(:issues_tracker, project_issues_trackers(@project.issues_tracker), {}, { disabled: !@project.issues_enabled })
56

57
              .control-group
58
                = f.label :issues_tracker_id, "Project name or id in issues tracker", class: 'control-label'
59
                .controls= f.text_field :issues_tracker_id, disabled: !@project.can_have_issues_tracker_id?
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

            .control-group
              = f.label :merge_requests_enabled, "Merge Requests", class: 'control-label'
              .controls
                = f.check_box :merge_requests_enabled
                %span.descr Submit changes to be merged upstream.

            .control-group
              = f.label :wiki_enabled, "Wiki", class: 'control-label'
              .controls
                = f.check_box :wiki_enabled
                %span.descr Pages for project documentation

            .control-group
              = f.label :wall_enabled, "Wall", class: 'control-label'
              .controls
                = f.check_box :wall_enabled
                %span.descr Simple chat system for broadcasting inside project

            .control-group
              = f.label :snippets_enabled, "Snippets", class: 'control-label'
              .controls
                = f.check_box :snippets_enabled
                %span.descr Share code pastes with others out of git repository


          .form-actions
87
            = f.submit 'Save changes', class: "btn btn-save"
88

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111


    %center.light.prepend-top-20.padded
      %h3
        %i.icon-warning-sign
        Dangerous settings
      %p Project settings below may result in data loss!
      = link_to '#', class: 'btn js-toggle-visibility-link' do
        Show it to me
        %i.icon-chevron-down

    .js-toggle-visibility-container.hide
      - if can?(current_user, :change_namespace, @project)
        .ui-box.ui-box-danger
          .title Transfer project
          .errors-holder
          .form-holder
            = form_for(@project, url: transfer_project_path(@project), remote: true, html: { class: 'transfer-project' }) do |f|
              .control-group
                = f.label :namespace_id do
                  %span Namespace
                .controls
                  .control-group
D
Dmitriy Zaporozhets 已提交
112
                    = f.select :namespace_id, namespaces_options(@project.namespace_id), { prompt: 'Choose a project namespace' }, { class: 'chosen' }
113
                  %ul
114 115
                    %li Be careful. Changing the project's namespace can have unintended side effects.
                    %li You can only transfer the project to namespaces you manage.
116 117 118 119
                    %li You will need to update your local repositories to point to the new location.
              .form-actions
                = f.submit 'Transfer', class: "btn btn-remove"
      - else
120
        %p.nothing_here_message Only the project owner can transfer a project
121

122
      .ui-box.ui-box-danger
123
        .title Rename repository
124 125
        .errors-holder
        .form-holder
126
          = form_for(@project) do |f|
127
            .control-group
128 129
              = f.label :path do
                %span Path
130
              .controls
131
                .control-group
132 133 134
                  .input-append
                    = f.text_field :path
                    %span.add-on .git
135
                %ul
136
                  %li Be careful. Renaming a project's repository can have unintended side effects.
137 138
                  %li You will need to update your local repositories to point to the new location.
            .form-actions
139 140 141 142 143 144 145
              = f.submit 'Rename', class: "btn btn-remove"

      - if can?(current_user, :remove_project, @project)
        .ui-box.ui-box-danger
          .title Remove project
          .ui-box-body
            %p
146
              Removing the project will delete its repository and all related resources including issues, merge requests etc.
147
              %br
148
              %strong Removed projects cannot be restored!
149 150 151 152

            = link_to 'Remove project', @project, confirm: remove_project_message(@project), method: :delete, class: "btn btn-remove"
      - else
        %p.nothing_here_message Only project owner can remove a project
153 154

.save-project-loader.hide
D
Dmitriy Zaporozhets 已提交
155
  %center
156
    = image_tag "ajax_loader.gif"
D
Dmitriy Zaporozhets 已提交
157 158
    %h3 Saving project.
    %p Please wait a moment, this page will automatically refresh when ready.