mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-07 23:06:42 +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
|
= if @current_user.role == "admin" do
|
||||||
= link to: "/admin/flipper", class: "header__link" do
|
= link to: "/admin/flipper", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-toggle-on
|
i.fa.fa-fw.fa-toggle-on
|
||||||
=< "Site Settings"
|
' Site Settings
|
||||||
= if can?(@conn, :manage, SiteNotice) do
|
= if can?(@conn, :manage, SiteNotice) do
|
||||||
= link to: "/admin/site_notices", class: "header__link" do
|
= link to: "/admin/site_notices", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-info-circle
|
i.fa.fa-fw.fa-info-circle
|
||||||
=< "Site Notices"
|
' Site Notices
|
||||||
= if can?(@conn, :manage, Tag) do
|
= if can?(@conn, :manage, Tag) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-tags
|
i.fa.fa-fw.fa-tags
|
||||||
=< "Tags"
|
' Tags
|
||||||
= if can?(@conn, :mod_read, User) do
|
= if can?(@conn, :mod_read, User) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-users
|
i.fa.fa-fw.fa-users
|
||||||
=< "Users"
|
' Users
|
||||||
= if can?(@conn, :mod_read, Comment) do
|
= if can?(@conn, :mod_read, Comment) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-comments
|
i.fa.fa-fw.fa-comments
|
||||||
=< "Comments"
|
' Comments
|
||||||
= if can?(@conn, :mod_read, Forum) do
|
= if can?(@conn, :mod_read, Forum) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-paragraph
|
i.fa.fa-fw.fa-paragraph
|
||||||
=< "Forums"
|
' Forums
|
||||||
= if can?(@conn, :manage, Advert) do
|
= if can?(@conn, :manage, Advert) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-shopping-bag
|
i.fa.fa-fw.fa-shopping-bag
|
||||||
=< "Advertisements"
|
' Advertisements
|
||||||
= if can?(@conn, :award, Badge) do
|
= if can?(@conn, :award, Badge) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-trophy
|
i.fa.fa-fw.fa-trophy
|
||||||
=< "Badges"
|
' Badges
|
||||||
= if can?(@conn, :manage, StaticPages) do
|
= if can?(@conn, :manage, StaticPages) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-sticky-note
|
i.fa.fa-fw.fa-sticky-note
|
||||||
=< "Pages"
|
' Pages
|
||||||
= if can?(@conn, :manage, ModNote) do
|
= if can?(@conn, :manage, ModNote) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-sticky-note
|
i.fa.fa-fw.fa-sticky-note
|
||||||
=< "Mod Notes"
|
' Mod Notes
|
||||||
= if @duplicate_report_count do
|
= if @duplicate_report_count do
|
||||||
= link to: "#", class: "header__link", title: "Duplicates" do
|
= link to: "#", class: "header__link", title: "Duplicates" do
|
||||||
=<> "D"
|
=<> "D"
|
||||||
|
@ -74,12 +74,12 @@
|
||||||
= if can?(@conn, :mod_read, UserBan) do
|
= if can?(@conn, :mod_read, UserBan) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-user
|
i.fa.fa-fw.fa-user
|
||||||
=< "User Bans"
|
' User Bans
|
||||||
= if can?(@conn, :mod_read, SubnetBan) do
|
= if can?(@conn, :mod_read, SubnetBan) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fab.fa-fw.fa-internet-explorer
|
i.fab.fa-fw.fa-internet-explorer
|
||||||
=< "IP Bans"
|
' IP Bans
|
||||||
= if can?(@conn, :mod_read, FingerprintBan) do
|
= if can?(@conn, :mod_read, FingerprintBan) do
|
||||||
= link to: "#", class: "header__link" do
|
= link to: "#", class: "header__link" do
|
||||||
i.fa.fa-fw.fa-desktop
|
i.fa.fa-fw.fa-desktop
|
||||||
=< "FP Bans"
|
' FP Bans
|
||||||
|
|
Loading…
Reference in a new issue