Djangoプロジェクトの初期設定を追加。環境変数に基づく設定をsettings.pyに実装し、ASGIおよびWSGI設定ファイルを作成。expensesアプリを追加し、基本的なURLルーティングとテンプレートを整備。作業ログをdiary.mdに追記。
This commit is contained in:
17
templates/expenses/monthly_report_pdf.html
Normal file
17
templates/expenses/monthly_report_pdf.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!doctype html>
|
||||
<html lang="ja">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>月次レポートPDF</title>
|
||||
<style>
|
||||
body { font-family: sans-serif; }
|
||||
h1, h2 { margin: 0 0 8px; }
|
||||
table { width: 100%; border-collapse: collapse; }
|
||||
th, td { border: 1px solid #333; padding: 6px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>月次レポート</h1>
|
||||
<p>PDF出力用テンプレートです。</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user