link to administration
This commit is contained in:
parent
6cf0a46ca8
commit
016e4438a0
3 changed files with 16 additions and 0 deletions
|
@ -83,6 +83,13 @@ renderLayout widget = do
|
||||||
return $ userSlug user
|
return $ userSlug user
|
||||||
Nothing ->
|
Nothing ->
|
||||||
return ("" :: T.Text)
|
return ("" :: T.Text)
|
||||||
|
madmin <- case msu of
|
||||||
|
Just a -> do
|
||||||
|
let uId = getUserIdFromText a
|
||||||
|
user <- runDB $ getJust uId
|
||||||
|
return $ Just $ userAdmin user
|
||||||
|
Nothing ->
|
||||||
|
return Nothing
|
||||||
let block = appSignupBlocked $ appSettings master
|
let block = appSignupBlocked $ appSettings master
|
||||||
|
|
||||||
-- We break up the default layout into two components:
|
-- We break up the default layout into two components:
|
||||||
|
|
|
@ -264,6 +264,11 @@
|
||||||
background: #47d65f url('/static/css/images/overlay.png');
|
background: #47d65f url('/static/css/images/overlay.png');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.red
|
||||||
|
{
|
||||||
|
background: #ffeeee url('/static/css/images/overlay.png') !important;
|
||||||
|
}
|
||||||
|
|
||||||
#message
|
#message
|
||||||
{
|
{
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
|
|
@ -24,6 +24,10 @@
|
||||||
<li>
|
<li>
|
||||||
<a href=@{LogoutR}>
|
<a href=@{LogoutR}>
|
||||||
Logout
|
Logout
|
||||||
|
$maybe admin <- madmin
|
||||||
|
<li>
|
||||||
|
<a href=@{AdminR} .red>
|
||||||
|
Administration
|
||||||
$nothing
|
$nothing
|
||||||
<li>
|
<li>
|
||||||
<a href=@{LoginR}>
|
<a href=@{LoginR}>
|
||||||
|
|
Loading…
Reference in a new issue