mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-01-31 19:36:44 +01:00
replace =< with '
This commit is contained in:
parent
f584d87ceb
commit
06d6e71061
1 changed files with 13 additions and 13 deletions
|
@ -9,43 +9,43 @@
|
|||
= if @current_user.role == "admin" do
|
||||
= link to: "/admin/flipper", class: "header__link" do
|
||||
i.fa.fa-fw.fa-toggle-on
|
||||
=< "Site Settings"
|
||||
' Site Settings
|
||||
= if can?(@conn, :manage, SiteNotice) do
|
||||
= link to: "/admin/site_notices", class: "header__link" do
|
||||
i.fa.fa-fw.fa-info-circle
|
||||
=< "Site Notices"
|
||||
' Site Notices
|
||||
= if can?(@conn, :manage, Tag) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-tags
|
||||
=< "Tags"
|
||||
' Tags
|
||||
= if can?(@conn, :mod_read, User) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-users
|
||||
=< "Users"
|
||||
' Users
|
||||
= if can?(@conn, :mod_read, Comment) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-comments
|
||||
=< "Comments"
|
||||
' Comments
|
||||
= if can?(@conn, :mod_read, Forum) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-paragraph
|
||||
=< "Forums"
|
||||
' Forums
|
||||
= if can?(@conn, :manage, Advert) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-shopping-bag
|
||||
=< "Advertisements"
|
||||
' Advertisements
|
||||
= if can?(@conn, :award, Badge) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-trophy
|
||||
=< "Badges"
|
||||
' Badges
|
||||
= if can?(@conn, :manage, StaticPages) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-sticky-note
|
||||
=< "Pages"
|
||||
' Pages
|
||||
= if can?(@conn, :manage, ModNote) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-sticky-note
|
||||
=< "Mod Notes"
|
||||
' Mod Notes
|
||||
= if @duplicate_report_count do
|
||||
= link to: "#", class: "header__link", title: "Duplicates" do
|
||||
=<> "D"
|
||||
|
@ -74,12 +74,12 @@
|
|||
= if can?(@conn, :mod_read, UserBan) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-user
|
||||
=< "User Bans"
|
||||
' User Bans
|
||||
= if can?(@conn, :mod_read, SubnetBan) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fab.fa-fw.fa-internet-explorer
|
||||
=< "IP Bans"
|
||||
' IP Bans
|
||||
= if can?(@conn, :mod_read, FingerprintBan) do
|
||||
= link to: "#", class: "header__link" do
|
||||
i.fa.fa-fw.fa-desktop
|
||||
=< "FP Bans"
|
||||
' FP Bans
|
||||
|
|
Loading…
Reference in a new issue