mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
27 lines
787 B
Text
27 lines
787 B
Text
.row
|
|
.col-md-12
|
|
.page-header
|
|
%h1
|
|
Comments
|
|
= "(#{@comments.length})" if @comments.any?
|
|
.col-md-12
|
|
%ul.nav.nav-tabs#commentsTable
|
|
%li.active
|
|
%a{ href: '#unread_comments', 'data-toggle' => 'tab' }
|
|
%span.fa-solid.fa-comment
|
|
Unread
|
|
%li
|
|
%a{ href: '#posted_comments', 'data-toggle' => 'tab' }
|
|
%span.fa-solid.fa-pencil
|
|
Posted
|
|
%li
|
|
%a{ href: '#all_comments', 'data-toggle' => 'tab' }
|
|
%span.fa-solid.fa-comments
|
|
All
|
|
.tab-content
|
|
.tab-pane.active#unread_comments
|
|
= render partial: 'unread_comments'
|
|
.tab-pane#posted_comments
|
|
= render partial: 'posted_comments'
|
|
.tab-pane#all_comments
|
|
= render partial: 'all_comments'
|