-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Notice on display of Draft pages #984
Comments
To implement this requires some extra Django/Mezzanine template code in I'm not sure what notice component styles you're referring to though. @gvn can you point them out? |
I'm not sure either. We didn't do a custom alert style for Foundation AFAIK. |
I was thinking of the barn raising notice last spring. Yellow bar. |
Looks like we need a wrapper
|
Currently, all Mezzanine authors can view pages with Draft status on the frontend as if the page was Published. This is great for a preview, but dangerous since many staff can assume a page is live and visible to the public when it is not.
Steps to Repeat:
Requirements
#faf2cc
) across the top with text that says:Published
, but not live because of a future date or expiration date. We should show notice on ALL pages that are not visible. So, in pseudo code `if (status = draft || now != published ) { display_draft_notice = true }. We could get fancy with conditional notice copy, but that feels like extra complexity. Nice to have but probably not worth it.cc @alanmoo to triage
The text was updated successfully, but these errors were encountered: