Files
Card-data-sorting/templates/base.html

22 lines
542 B
HTML

<!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>