28 lines
627 B
HTML
28 lines
627 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}月次レポート{% endblock %}
|
|
|
|
{% block content %}
|
|
<section>
|
|
<h2>月次レポート</h2>
|
|
<form method="get">
|
|
<label>
|
|
年月
|
|
<input type="month" name="target_month">
|
|
</label>
|
|
<button type="submit">表示</button>
|
|
</form>
|
|
<div>
|
|
<h3>店舗別合計</h3>
|
|
<p>集計結果をここに表示。</p>
|
|
</div>
|
|
<div>
|
|
<h3>経費区分別合計</h3>
|
|
<p>集計結果をここに表示。</p>
|
|
</div>
|
|
<div>
|
|
<p>未分類件数の警告をここに表示。</p>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|