Skip to content

Fix logic. De Morgan's law says: not (A or B) = not A and not B #11

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/posts/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from .models import Post

def post_create(request):
if not request.user.is_staff or not request.user.is_superuser:
if not request.user.is_staff and not request.user.is_superuser:
raise Http404

form = PostForm(request.POST or None, request.FILES or None)
Expand All @@ -38,7 +38,7 @@ def post_create(request):
def post_detail(request, slug=None):
instance = get_object_or_404(Post, slug=slug)
if instance.publish > timezone.now().date() or instance.draft:
if not request.user.is_staff or not request.user.is_superuser:
if not request.user.is_staff and not request.user.is_superuser:
raise Http404
share_string = quote_plus(instance.content)
context = {
Expand Down Expand Up @@ -88,7 +88,7 @@ def post_list(request):


def post_update(request, slug=None):
if not request.user.is_staff or not request.user.is_superuser:
if not request.user.is_staff and not request.user.is_superuser:
raise Http404
instance = get_object_or_404(Post, slug=slug)
form = PostForm(request.POST or None, request.FILES or None, instance=instance)
Expand All @@ -108,7 +108,7 @@ def post_update(request, slug=None):


def post_delete(request, slug=None):
if not request.user.is_staff or not request.user.is_superuser:
if not request.user.is_staff and not request.user.is_superuser:
raise Http404
instance = get_object_or_404(Post, slug=slug)
instance.delete()
Expand Down