Flake8 Errors corrected
This commit is contained in:
parent
d779da75e7
commit
fdef8d070b
1 changed files with 4 additions and 5 deletions
|
@ -44,7 +44,9 @@ def bird_help(request):
|
||||||
|
|
||||||
@login_required(login_url="account_login")
|
@login_required(login_url="account_login")
|
||||||
def bird_all(request):
|
def bird_all(request):
|
||||||
birds = FallenBird.objects.filter(Q(status="1")|Q(status="2")).annotate(total_costs=Sum('costs__costs'))
|
birds = FallenBird.objects.filter(Q(status="1") | Q(status="2")).annotate(
|
||||||
|
total_costs=Sum("costs__costs")
|
||||||
|
)
|
||||||
rescuer_modal = Rescuer.objects.all()
|
rescuer_modal = Rescuer.objects.all()
|
||||||
context = {"birds": birds, "rescuer_modal": rescuer_modal}
|
context = {"birds": birds, "rescuer_modal": rescuer_modal}
|
||||||
# Post came from the modal form.
|
# Post came from the modal form.
|
||||||
|
@ -66,10 +68,7 @@ def bird_recover_all(request):
|
||||||
@login_required(login_url="account_login")
|
@login_required(login_url="account_login")
|
||||||
def bird_single(request, id):
|
def bird_single(request, id):
|
||||||
bird = FallenBird.objects.get(id=id)
|
bird = FallenBird.objects.get(id=id)
|
||||||
form = BirdEditForm(
|
form = BirdEditForm(request.POST or None, request.FILES or None, instance=bird)
|
||||||
request.POST or None,
|
|
||||||
request.FILES or None,
|
|
||||||
instance=bird)
|
|
||||||
if request.method == "POST":
|
if request.method == "POST":
|
||||||
if form.is_valid():
|
if form.is_valid():
|
||||||
fs = form.save(commit=False)
|
fs = form.save(commit=False)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue