def add(): form = TodoForm(request.form) if form.validate(): content = request.form.get("content") todo = Todo(content=content) todo.save() todos = Todo.objects.all() return render_template("index.html", todos=todos, form=form)
def add(): form = TodoForm(request.form) if form.validate(): content = request.form.get("content") todo = Todo(content=content) todo.save() todos = Todo.objects.all() return render_template('index.html', todos=todos, form=form)
def add(): form = TodoForm(request.form) if form.validate(): content = form.content.data todo = Todo(content=content, time=datetime.now()) todo.save() todos = Todo.objects.order_by('-time') return render_template("index.html", todos=todos, form=form)
def add(): form = TodoForm(request.form) if form.validate(): content = form.content.data todo = Todo(content=content, time=datetime.now()) todo.save() todos = Todo.objects.order_by('-time') return render_template('index.html', todos=todos, form=form)
def add(): form = TodoForm(request.form) if form.validate(): content = form.content.data todo = Todo(content=content) todo.save() todos = Todo.objects.order_by('-time') return redirect(url_for(".index"))
def add(): form = TodoForm(request.form) if form.validate(): content = form.content.data todo = Todo(content=content) todo.save() return redirect(url_for("index", forms=form)) else: todos = Todo.objects.all() return render_template("index.html", todos=todos, forms=form)
def add(): # form = request.form # content = form.get('content') # todo = Todo(content=content) # todo.save() # todos = Todo.objects.all() form = TodoForm(request.form) if form.validate(): content = form.content.data todo = Todo(content=content) todo.save() todos = Todo.objects.order_by('-time') return render_template('index.html', todos=todos, form=form)
def undone(todo_id): form = TodoForm() todo = Todo.objects.get_or_404(id=todo_id) todo.status = 0 todo.save() todos = Todo.objects.order_by('-time') return render_template("index.html", todos=todos, form=form)
def undone(todo_id): form = TodoForm() todo = Todo.objects.get_or_404(id=todo_id) todo.status = 0 todo.save() todos = Todo.objects.order_by('-time') return redirect(url_for(".index"))
def delete(todo_id): form = TodoForm() todo = Todo.objects.get_or_404(id=todo_id) todo.delete() # todos=Todo.objects.all() todos = Todo.objects.order_by('-time') return render_template("index.html", todos=todos, form=form)
def undone(todo_id): form = TodoForm(request.form) todo = Todo.objects.get_or_404(id=todo_id) todo.status = 0 todo.save() todos = Todo.objects.all() return render_template('index.html', todos=todos, form=form)
def done(todo_id): form = TodoForm() todo = Todo.objects.get_or_404(id=todo_id) todo.status = 1 todo.save() # todos = Todo.objects.all() todos = Todo.objects.order_by('-time') return render_template('index.html', todos=todos, form=form)
def done(todo_id): form = TodoForm() todo = Todo.objects.get_or_404(id=todo_id) todo.status = 1 todo.save() todos = Todo.objects.all() return render_template("index.html", todos=todos, form=form)
def index(): form = TodoForm() todos = Todo.objects.order_by('-time') return render_template("index.html", todos=todos, form=form)
def delete(todo_id): form = TodoForm() todo = Todo.objects.get_or_404(id=todo_id) todo.delete() todos = Todo.objects.order_by('-time') return redirect(url_for(".index"))
def index(): form = TodoForm() todos = Todo.objects.all() return render_template("index.html", todos=todos, form=form)
def api_todolist(): form = TodoForm() todos = Todo.objects.order_by('-time') #return render_template("index.html",todos=todos,form=form) return jsonify(todos)
def k(): form=TodoForm() todo=Todo.objects.get_or_404(id='5b5ac64fd8aea31ef0723278') todo.status=222 todos = Todo.objects.all() print(todo.status)
def index(): form = TodoForm(request.form) todos = Todo.objects.order_by('-time') return render_template('index.html', todos=todos, form=form)
def delete(todo_id): form = TodoForm(request.form) todo = Todo.objects.get_or_404(id=todo_id) todo.delete() todos = Todo.objects.all() return render_template('index.html', todos=todos, form=form)