debian-mirror-gitlab/app/views/projects/labels/index.html.haml

69 lines
3 KiB
Text
Raw Normal View History

- @no_container = true
2015-09-11 14:41:01 +05:30
- page_title "Labels"
2017-09-10 17:25:29 +05:30
- can_admin_label = can?(current_user, :admin_label, @project)
2018-11-18 11:00:15 +05:30
- search = params[:search]
2018-11-08 19:23:39 +05:30
- if can_admin_label
- content_for(:header_content) do
.nav-controls
= link_to _('New label'), new_project_label_path(@project), class: "btn btn-new"
2017-09-10 17:25:29 +05:30
2018-11-18 11:00:15 +05:30
- if @labels.exists? || @prioritized_labels.exists? || search.present?
2018-03-27 19:54:05 +05:30
#promote-label-modal
2017-08-17 22:00:37 +05:30
%div{ class: container_class }
.top-area.adjust
.nav-text
2018-11-08 19:23:39 +05:30
= _('Labels can be applied to issues and merge requests.')
2016-06-22 15:30:34 +05:30
2018-11-18 11:00:15 +05:30
.nav-controls
= form_tag project_labels_path(@project), method: :get do
.input-group
= search_field_tag :search, params[:search], { placeholder: _('Filter'), id: 'label-search', class: 'form-control search-text-input input-short', spellcheck: false }
%span.input-group-append
%button.btn.btn-default{ type: "submit", "aria-label" => _('Submit search') }
= icon("search")
.labels-container.prepend-top-10
2017-09-10 17:25:29 +05:30
- if can_admin_label
2018-11-18 11:00:15 +05:30
- if search.blank?
%p.text-muted
= _('Star a label to make it a priority label. Order the prioritized labels to change their relative priority, by dragging.')
2017-08-17 22:00:37 +05:30
-# Only show it in the first page
- hide = @available_labels.empty? || (params[:page].present? && params[:page] != '1')
.prioritized-labels{ class: ('hide' if hide) }
2018-11-08 19:23:39 +05:30
%h5.prepend-top-10= _('Prioritized Labels')
.content-list.manage-labels-list.js-prioritized-labels{ "data-url" => set_priorities_project_labels_path(@project) }
2018-11-18 11:00:15 +05:30
#js-priority-labels-empty-state.priority-labels-empty-state{ class: "#{'hidden' unless @prioritized_labels.empty? && search.blank?}" }
2017-08-17 22:00:37 +05:30
= render 'shared/empty_states/priority_labels'
- if @prioritized_labels.present?
2018-11-08 19:23:39 +05:30
= render partial: 'shared/label', subject: @project, collection: @prioritized_labels, as: :label, locals: { force_priority: true }
2018-11-18 11:00:15 +05:30
- elsif search.present?
.nothing-here-block
= _('No prioritised labels with such name or description')
2017-08-17 22:00:37 +05:30
- if @labels.present?
.other-labels
2017-09-10 17:25:29 +05:30
- if can_admin_label
2018-11-08 19:23:39 +05:30
%h5{ class: ('hide' if hide) }= _('Other Labels')
.content-list.manage-labels-list.js-other-labels
2017-08-17 22:00:37 +05:30
= render partial: 'shared/label', subject: @project, collection: @labels, as: :label
= paginate @labels, theme: 'gitlab'
2018-11-18 11:00:15 +05:30
- elsif search.present?
.other-labels
- if @available_labels.any?
%h5
= _('Other Labels')
.nothing-here-block
= _('No other labels with such name or description')
- else
.nothing-here-block
= _('No labels with such name or description')
2017-08-17 22:00:37 +05:30
- else
= render 'shared/empty_states/labels'
2018-11-08 19:23:39 +05:30
%template#js-badge-item-template
%li.label-link-item.js-priority-badge.inline.prepend-left-10
.label-badge.label-badge-blue= _('Prioritized label')