debian-mirror-gitlab/app/views/projects/buttons/_star.html.haml

22 lines
683 B
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- if current_user
2018-11-18 11:00:15 +05:30
%button.btn.btn-default.star-btn.toggle-star{ type: "button", data: { endpoint: toggle_star_project_path(@project, :json) } }>
- if current_user.starred?(@project)
2018-03-17 18:26:18 +05:30
= sprite_icon('star')
2017-09-10 17:25:29 +05:30
%span.starred= _('Unstar')
- else
2018-03-17 18:26:18 +05:30
= sprite_icon('star-o')
2017-09-10 17:25:29 +05:30
%span= s_('StarProject|Star')
2017-08-17 22:00:37 +05:30
.count-with-arrow
%span.arrow
%span.count.star-count
2015-09-11 14:41:01 +05:30
= @project.star_count
- else
2017-09-10 17:25:29 +05:30
= link_to new_user_session_path, class: 'btn has-tooltip star-btn', title: _('You must sign in to star a project') do
2018-03-17 18:26:18 +05:30
= sprite_icon('star')
2017-09-10 17:25:29 +05:30
#{ s_('StarProject|Star') }
2017-08-17 22:00:37 +05:30
.count-with-arrow
%span.arrow
2015-09-11 14:41:01 +05:30
%span.count
= @project.star_count