Djangoプロジェクトの初期設定を追加。環境変数に基づく設定をsettings.pyに実装し、ASGIおよびWSGI設定ファイルを作成。expensesアプリを追加し、基本的なURLルーティングとテンプレートを整備。作業ログをdiary.mdに追記。

This commit is contained in:
president
2025-12-19 15:30:38 +09:00
parent bfca4ee185
commit 5fc2a31f50
22 changed files with 379 additions and 7 deletions

21
templates/base.html Normal file
View File

@@ -0,0 +1,21 @@
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}Card Data Sorting{% endblock %}</title>
</head>
<body>
<header>
<h1>Card Data Sorting</h1>
<nav>
<a href="{% url 'csv_upload' %}">CSV取込</a>
<a href="{% url 'expense_list' %}">明細編集</a>
<a href="{% url 'monthly_report' %}">月次レポート</a>
</nav>
</header>
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>