From 8e52aad828320be1eb0452a88ebcfac2c1f870b8 Mon Sep 17 00:00:00 2001 From: Scot Hacker Date: Thu, 10 Jan 2019 23:18:09 -0800 Subject: [PATCH] Move index.md to docs dir --- index.md => docs/index.md | 0 todo/views/del_list.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename index.md => docs/index.md (100%) diff --git a/index.md b/docs/index.md similarity index 100% rename from index.md rename to docs/index.md diff --git a/todo/views/del_list.py b/todo/views/del_list.py index 5ee1cd0..c4e044f 100644 --- a/todo/views/del_list.py +++ b/todo/views/del_list.py @@ -1,8 +1,8 @@ from django.contrib import messages from django.contrib.auth.decorators import login_required, user_passes_test -from django.http import HttpResponse -from django.shortcuts import render, redirect, get_object_or_404 from django.core.exceptions import PermissionDenied +from django.http import HttpResponse +from django.shortcuts import get_object_or_404, redirect, render from todo.models import Task, TaskList from todo.utils import staff_check