sort import

This commit is contained in:
gw3000 2023-07-18 21:04:09 +02:00
parent 011e8ba16f
commit 52b06a2646
2 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,8 @@
from django.contrib.auth.decorators import login_required
from django.shortcuts import render, redirect
from .models import Costs
from django.shortcuts import redirect, render
from .forms import CostsForm
from .models import Costs
@login_required(login_url="account_login")