gitlab-org--gitlab-foss/app/views/projects/tags/index.html.haml

45 lines
1.5 KiB
Plaintext
Raw Normal View History

2016-06-03 18:09:45 +00:00
- @no_container = true
2015-04-30 17:06:18 +00:00
- page_title "Tags"
= render "projects/commits/head"
2013-07-17 11:43:18 +00:00
2016-06-30 13:01:26 +00:00
%div{ class: container_class }
.top-area
.nav-text
Tags give the ability to mark specific points in history as being important
.nav-controls
2016-08-31 10:39:35 +00:00
= 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 }
.dropdown.inline
%button.dropdown-toggle.btn{ type: 'button', data: { toggle: 'dropdown'} }
2016-08-31 11:35:23 +00:00
%span.light
= @sort.humanize
= icon('caret-down')
%ul.dropdown-menu.dropdown-menu-align-right
%li
2016-08-31 10:39:35 +00:00
= link_to filter_tags_path(sort: nil) do
Name
2016-08-31 10:39:35 +00:00
= link_to filter_tags_path(sort: sort_value_recently_updated) do
= sort_title_recently_updated
2016-08-31 10:39:35 +00:00
= link_to filter_tags_path(sort: sort_value_oldest_updated) do
= sort_title_oldest_updated
2016-08-31 11:35:23 +00:00
- if can?(current_user, :push_code, @project)
2016-08-31 10:39:35 +00:00
= link_to new_namespace_project_tag_path(@project.namespace, @project), class: 'btn btn-create new-tag-btn' do
New tag
2013-07-17 11:43:18 +00:00
2016-06-03 18:09:45 +00:00
.tags
2016-06-30 13:01:26 +00:00
- if @tags.any?
2016-06-03 18:09:45 +00:00
%ul.content-list
2016-06-16 17:33:29 +00:00
= render partial: 'tag', collection: @tags
2013-04-05 18:03:39 +00:00
2016-06-03 18:09:45 +00:00
= paginate @tags, theme: 'gitlab'
2012-02-11 21:22:33 +00:00
2016-06-03 18:09:45 +00:00
- else
.nothing-here-block
Repository has no tags yet.
2014-08-17 14:21:31 +00:00
%br
2016-06-03 18:09:45 +00:00
%small
Use git tag command to add a new one:
%br
%span.monospace git tag -a v1.4 -m 'version 1.4'