月次レポート機能を実装し、経費の取り消し・復帰機能を追加。CSV取込画面にドラッグ&ドロップエリアを実装し、エラーメッセージ表示を追加。金額のカンマ区切り表示を全体に適用。faviconとapple-touch-iconを追加し、404エラーを回避。作業ログをdiary.mdに追記。

This commit is contained in:
president
2025-12-21 16:36:39 +09:00
parent d301ddcbfb
commit 7ae367cd66
17 changed files with 682 additions and 21 deletions

View File

@@ -15,9 +15,17 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.http import HttpResponse
from django.urls import include, path
def empty_icon(request):
return HttpResponse(status=204)
urlpatterns = [
path('admin/', admin.site.urls),
path('favicon.ico', empty_icon),
path('apple-touch-icon.png', empty_icon),
path('apple-touch-icon-precomposed.png', empty_icon),
path('', include('expenses.urls')),
]