<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="keywords" content="MIKAWA ARENA">
<meta name="description" content="みんなのアリーナで、三河のMIRAIを!三河のMIRAIをつくる募金 2025年10月開始!">
<meta property="og:title" content="TEAM MIKAWA みんなのアリーナ | 三河安城交流拠点建設募金団体">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mikawa-arena.jp/">
<meta property="og:image" content="https://mikawa-arena.jp/assets/img/ogp.jpg">
<meta property="og:description" content="みんなのアリーナで、三河のMIRAIを!三河のMIRAIをつくる募金 2025年10月開始!">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="TEAM MIKAWA みんなのアリーナ | 三河安城交流拠点建設募金団体">
<meta name="twitter:image" content="https://mikawa-arena.jp/assets/img/ogp.jpg">
<meta name="twitter:description" content="みんなのアリーナで、三河のMIRAIを!三河のMIRAIをつくる募金 2025年10月開始!">
<title>TEAM MIKAWA みんなのアリーナ | 三河安城交流拠点建設募金団体</title>
<link rel="canonical" href="https://mikawa-arena.jp/news/">
<link rel="icon" href="/assets/img/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/common.css">
<link rel="stylesheet" href="/assets/css/swiper-bundle.css">
<link rel="stylesheet" href="/assets/css/donation.css">
<style>
.individual {
box-sizing: border-box;
}
.inner .inner, .inner_s {
max-width: none;
}
form {
text-align: right;
}
.inner {
font-size: 12px;
padding: 0;
padding-top: 50px;
}
.inner.left, .inner_s.left {
overflow: scroll;
height: calc(100vh - 130px);
}
section th {
padding: 12px;
vertical-align: middle;
}
section th, section td {
padding: 12px;
line-height: 1.4;
width: auto;
min-width: 100px;
}
section td {
white-space: nowrap;
background-color: rgba(255, 255, 255, 0.8);
border-bottom: 1px dotted #a8a8a8;
}
.form_save {
padding: 10px 1.5em;
font-size: 1.6rem;
padding-right: 60px;
min-width: 120px;
width: auto;
}
.btn_link.arrow::after, .btn_submit.arrow::after {
width: 30px;
height: 30px;
}
.dlBtnContainer {
text-align: right;
}
.current {
pointer-events: none;
background-color: #949494;
}
</style>
</head>
<body>
<main class="individual">
<section>
<div class="inner">
<div class="dlBtnContainer">
<a href="./admin_individual" class="form_save btn btn_submit arrow current">個人寄附一覧へ</a>
<a href="./admin_corp" class="form_save btn btn_submit arrow">法人寄附一覧へ</a>
<a href="./admin_contact" class="form_save btn btn_submit arrow">お問い合わせ一覧へ</a>
<a href="/donation/api/get_csv/index.php?type=individual" download="get_csv" class="btn arrow">CSVダウンロード</a>
</div>
<div class="inner_s left">
<table>
<tr class="">
<th>ID</th>
<th>登録日時</th>
<th>お名前</th>
<th>お名前 [フリガナ]</th>
<th>お名前 [ローマ字]</th>
<th>メールアドレス</th>
<th>生年月日</th>
<th>郵便番号</th>
<th>住所</th>
<th>電話番号</th>
<th>寄附金額</th>
<th>アリーナへの寄附者名の<br>掲出を希望</th>
</tr>
{% for user in users %}
<tr>
<td>{{ user.id }}</td>
<td>{{ user.created_at }}</td>
<td>{{ user.lastname }} {{ user.firstname }}</td>
<td>{{ user.lastname_kana }} {{ user.firstname_kana }}</td>
<td>{{ user.lastname_roman }} {{ user.firstname_roman }}</td>
<td>{{ user.email }}</td>
<td>{{ user.year }}年 {{ user.month }}月 {{ user.day }}日</td>
<td>{{ user.zip0 }}-{{ user.zip1 }}</td>
<td>{{ user.prefecture }}{{ user.address }}{{ user.address_option }}</td>
<td>{{ user.tel }}</td>
<td>{{ user.amount }}</td>
<td>{% if user.is_public == 1 %}希望する{% else %}希望しない{% endif %}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
</section>
</main>
</body>
</html>