Commit ef4848a6 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #7609 from cirosantilli/rm-haml-strings

[refactor] Remove HAML eval for const strings.
parents c8514bec 15c89672
%p
= "Project was moved to another location"
Project was moved to another location
%p
The project is now located under
= link_to project_url(@project) do
......
......@@ -26,7 +26,7 @@
%a{href: "#diff-#{i}"}
%i.icon-minus
= diff.old_path
= "->"
\->
= diff.new_path
- elsif diff.new_file
%span.new-file
......
......@@ -9,7 +9,7 @@
= link_to_gfm issue.title, project_issue_path(issue.project, issue), class: "row_title"
- if issue.closed?
%small.pull-right
= "CLOSED"
CLOSED
.issue-info
- if issue.assignee
......
......@@ -5,7 +5,7 @@
- if merge_request.merged?
%small.pull-right
%i.icon-ok
= "MERGED"
MERGED
- else
%span.pull-right
- if merge_request.for_fork?
......
......@@ -16,7 +16,7 @@
.form-group
.light
= f.label :title do
= "Title *"
Title *
= f.text_field :title, class: "form-control input-lg js-gfm-input", maxlength: 255, rows: 5, required: true
.form-group
.light
......
%h3.page-title
= "New project member(s)"
New project member(s)
= form_for @user_project_relation, as: :team_member, url: project_team_members_path(@project), html: { class: "form-horizontal users-project-form" } do |f|
-if @user_project_relation.errors.any?
......
%h3.page-title
= "Import members from another project"
Import members from another project
%p.light
Only project members will be imported. Group members will be skipped.
%hr
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment