Skip to content

Commit

Permalink
Merge pull request #4709 from morry48/improvement/display_require_for…
Browse files Browse the repository at this point in the history
…_admin_delivery_edit

管理画面の会員管理/お届け先登録で必須項目に  マークをつける
  • Loading branch information
okazy authored Sep 29, 2020
2 parents 85ab790 + 4d2cc49 commit 570554b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/Eccube/Resource/template/admin/Customer/delivery_edit.twig
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ file that was distributed with this source code.

<div class="row mb-2">
<div class="col-3">
{{ 'admin.common.name'|trans }}
<span>{{ 'admin.common.name'|trans }}</span>
<span class="badge badge-primary ml-1">{{ 'admin.common.required'|trans }}</span>
</div>
<div class="col">
<div class="row mb-2">
Expand All @@ -71,7 +72,8 @@ file that was distributed with this source code.

<div class="row mb-2">
<div class="col-3">
{{ 'admin.common.kana'|trans }}
<span>{{ 'admin.common.kana'|trans }}</span>
<span class="badge badge-primary ml-1">{{ 'admin.common.required'|trans }}</span>
</div>
<div class="col">
<div class="row mb-2">
Expand Down Expand Up @@ -99,7 +101,8 @@ file that was distributed with this source code.

<div class="row mb-2">
<div class="col-3">
{{ 'admin.common.address'|trans }}
<span>{{ 'admin.common.address'|trans }}</span>
<span class="badge badge-primary ml-1">{{ 'admin.common.required'|trans }}</span>
</div>
<div class="col">
<div class="row mb-2">
Expand Down Expand Up @@ -144,7 +147,8 @@ file that was distributed with this source code.

<div class="row mb-2">
<div class="col-3">
{{ 'admin.common.phone_number'|trans }}
<span>{{ 'admin.common.phone_number'|trans }}</span>
<span class="badge badge-primary ml-1">{{ 'admin.common.required'|trans }}</span>
</div>
<div class="col">
{{ form_widget(form.phone_number) }}
Expand Down

0 comments on commit 570554b

Please sign in to comment.