templates/admin/admin_corp.html.twig line 1

Open in your IDE?
  1. <!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">個人寄附一覧へ</a>
                    <a href="./admin_corp" class="form_save btn btn_submit arrow current">法人寄附一覧へ</a>
                    <a href="./admin_contact" class="form_save btn btn_submit arrow">お問い合わせ一覧へ</a>
                    <a href="/donation/api/get_csv/index.php?type=corporation" 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>本社所在地<br>郵便番号</th>
                            <th>本社所在地住所</th>
                            <th>担当者名</th>
                            <th>メールアドレス</th>
                            <th>部署</th>
                            <th>(本社所在地以外)郵便番号</th>
                            <th>(本社所在地以外)住所</th>
                            <th>電話番号</th>
                            <th>寄付区分<br>(一括/分割)</th>
                            <th>分割内訳</th>
                            <th>芳名板への<br>法人名の記名</th>
                            <th>法人名の<br>公表希望</th>
                        </tr>
                    {% for user in users %}
                        {% set cnt = 1 %}
                        {% for pmt in paymentList %}
                            {% if pmt.donationId == user.id %}
                                <tr>
                                    <td>{{ user.id }}</td>
                                    <td>{{ user.created_at }}</td>
                                    <td>{{ user.corp_name }}</td>
                                    <td>{{ user.represen_position }}</td>
                                    <td>
                                    {% if user.represen != '' %}
                                        {{ user.represen }}
                                    {% else %}
                                        {{ user.lastname }} {{ user.firstname }}
                                    {% endif %}
                                    </td>
                                    <td>{{ user.zip0 }}-{{ user.zip1 }}</td>
                                    <td>{{ user.prefecture }}{{ user.address }}{{ user.address_option }}</td>
                                    <td>
                                    {% if user.dep_name != '' %}
                                        {{ user.dep_name }}
                                    {% else %}
                                        {{ user.dep_lastname }} {{ user.dep_firstname }}
                                    {% endif %}
                                    </td>
                                    <td>{{ user.email }}</td>
                                    <td>{{ user.department }}</td>
                                    <td>{{ user.zip20 }}-{{ user.zip21 }}</td>
                                    <td>{{ user.prefecture2 }}{{ user.address2 }}{{ user.address_option2 }}</td>
                                    <td>{{ user.tel2 }}</td>
                                    <td>{{ user.payment }}</td>
                                    <td>
                                
                                    {{ cnt }}回目<br>
                                    {{ pmt.amount }}円<br>
                                    振込予定日:{{ pmt.date }}
                                    {% set cnt = cnt + 1 %}
                                
                                    </td>
                                    <td>{% if user.is_corp_name == 1 %}希望する{% else %}希望しない{% endif %}</td>
                                    <td>{% if user.is_public == 1 %}希望する{% else %}希望しない{% endif %}</td>
                                </tr>
                            {% endif %}
                        {% endfor %}
                    {% endfor %}
                    </table>
                </div>
            </div>
        </section>
    
    </main>
    
    
    
    </body>
    </html>