Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/tags/index.html.haml')
-rw-r--r--app/views/projects/tags/index.html.haml30
1 files changed, 0 insertions, 30 deletions
diff --git a/app/views/projects/tags/index.html.haml b/app/views/projects/tags/index.html.haml
deleted file mode 100644
index f1bc2bc9a2b..00000000000
--- a/app/views/projects/tags/index.html.haml
+++ /dev/null
@@ -1,30 +0,0 @@
-= render "projects/commits/head"
-
-%h3.page-title
- Git Tags
- - if can? current_user, :push_code, @project
- .pull-right
- = link_to new_namespace_project_tag_path(@project.namespace, @project), class: 'btn btn-create new-tag-btn' do
- %i.fa.fa-add-sign
- New tag
-
-%p.light
- Tags give the ability to mark specific points in history as being important
-%hr
-
-.tags
- - unless @tags.empty?
- %ul.bordered-list
- - @tags.each do |tag|
- = render 'tag', tag: @repository.find_tag(tag)
-
- = paginate @tags, theme: 'gitlab'
-
- - else
- .nothing-here-block
- Repository has no tags yet.
- %br
- %small
- Use git tag command to add a new one:
- %br
- %span.monospace git tag -a v1.4 -m 'version 1.4'