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

45 lines
1.6 KiB
Text
Raw Normal View History

- @no_container = true
2017-08-17 22:00:37 +05:30
- @sort ||= sort_value_recently_updated
2015-09-11 14:41:01 +05:30
- page_title "Tags"
2014-09-02 18:07:02 +05:30
= render "projects/commits/head"
2017-08-17 22:00:37 +05:30
.flex-list{ class: container_class }
.top-area.adjust
.nav-text.row-main-content
Tags give the ability to mark specific points in history as being important
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
.nav-controls.row-fixed-content
2016-09-29 09:46:39 +05:30
= form_tag(filter_tags_path, method: :get) do
= search_field_tag :search, params[:search], { placeholder: 'Filter by tag name', id: 'tag-search', class: 'form-control search-text-input input-short', spellcheck: false }
2017-08-17 22:00:37 +05:30
.dropdown
%button.dropdown-toggle{ type: 'button', data: { toggle: 'dropdown'} }
2016-09-29 09:46:39 +05:30
%span.light
2017-08-17 22:00:37 +05:30
= tags_sort_options_hash[@sort]
= icon('chevron-down')
%ul.dropdown-menu.dropdown-menu-align-right.dropdown-menu-selectable
%li.dropdown-header
Sort by
- tags_sort_options_hash.each do |value, title|
%li
= link_to title, filter_tags_path(sort: value), class: ("is-active" if @sort == value)
2016-09-29 09:46:39 +05:30
- if can?(current_user, :push_code, @project)
= link_to new_namespace_project_tag_path(@project.namespace, @project), class: 'btn btn-create new-tag-btn' do
New tag
2014-09-02 18:07:02 +05:30
.tags
2016-08-24 12:49:21 +05:30
- if @tags.any?
2017-08-17 22:00:37 +05:30
%ul.flex-list.content-list
2016-06-22 15:30:34 +05:30
= render partial: 'tag', collection: @tags
2014-09-02 18:07:02 +05:30
= paginate @tags, theme: 'gitlab'
- else
.nothing-here-block
Repository has no tags yet.
2015-04-26 12:48:37 +05:30
%br
%small
Use git tag command to add a new one:
%br
%span.monospace git tag -a v1.4 -m 'version 1.4'