Updated the web #31

Merged
jkuijperm merged 10 commits from dev into main 2026-08-28 11:28:27 +00:00
3 changed files with 5 additions and 7 deletions
Showing only changes of commit 4ad2b59a1c - Show all commits

View File

@ -122,15 +122,15 @@ class GoalForm(forms.ModelForm):
class Meta:
model = Goal
fields = [
'name',
'kind',
'target_amount',
'category',
"name",
"kind",
"target_amount",
"category",
"include_subcategories",
"account",
"start_date",
"period",
"show_on_home"
"show_on_home",
]
widgets = {
"start_date": forms.DateInput(

View File

@ -5,7 +5,6 @@ from django.conf import settings
from django.db.models import Sum
from functools import cached_property
from django.utils.text import slugify
from django.db.models.fields import related
from django.db.models.functions import ExtractMonth

View File

@ -237,7 +237,6 @@ def expense_create(request):
@login_required
def expense_edit(request, pk):
# sourcery skip: assign-if-exp, merge-else-if-into-elif
expense = get_object_or_404(
Expense,
pk=pk,