9920551536
This commit alters views for the following models to use the markdown cache if present: * AbuseReport * Appearance * ApplicationSetting * BroadcastMessage * Group * Issue * Label * MergeRequest * Milestone * Project At the same time, calls to `escape_once` have been moved into the `single_line` Banzai pipeline, so they can't be missed out by accident and the work is done at save, rather than render, time.
19 lines
848 B
Text
19 lines
848 B
Text
%ul.bordered-list.manage-labels-list
|
|
- labels.each do |label|
|
|
- options = { milestone_title: @milestone.title, label_name: label.title }
|
|
|
|
%li
|
|
%span.label-row
|
|
%span.label-name
|
|
= link_to milestones_label_path(options) do
|
|
- render_colored_label(label, tooltip: false)
|
|
%span.prepend-description-left
|
|
= markdown_field(label, :description)
|
|
|
|
.pull-info-right
|
|
%span.append-right-20
|
|
= link_to milestones_label_path(options.merge(state: 'opened')) do
|
|
- pluralize milestone_issues_by_label_count(@milestone, label, state: :opened), 'open issue'
|
|
%span.append-right-20
|
|
= link_to milestones_label_path(options.merge(state: 'closed')) do
|
|
- pluralize milestone_issues_by_label_count(@milestone, label, state: :closed), 'closed issue'
|