summaryrefslogtreecommitdiff
path: root/app/views/projects/releases/edit.html.haml
blob: d6f758608a0f070f5cc64a0287b6205037a8201e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- @no_container = true
- add_to_breadcrumbs "Tags", project_tags_path(@project)
- breadcrumb_title @tag.name
- page_title "Edit", @tag.name, "Tags"

%div{ class: container_class }
  .sub-header-block.no-bottom-space
    .oneline
      .title
        Release notes for tag
        %strong= @tag.name


  = form_for(@release, method: :put, url: project_tag_release_path(@project, @tag.name), html: { class: 'common-note-form release-form js-quick-submit' }) do |f|
    = render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do
      = render 'projects/zen', f: f, attr: :description, classes: 'note-textarea', placeholder: "Write your release notes or drag files hereā€¦"
      = render 'shared/notes/hints'
    .error-alert
    .prepend-top-default
      = f.submit 'Save changes', class: 'btn btn-save'
      = link_to "Cancel", project_tag_path(@project, @tag.name), class: "btn btn-default btn-cancel"