PC版/ページテンプレート/購入の確認画面(単品販売)
4.8.1 アップデートでの変更箇所は下記となります。(行数は無編集の場合の目安となります)
+ で始まる行がアップデートで追加された行となります
- で始まる行がアップデートで削除された行となります
テンプレート編集画面の「オリジナルとの差分を確認する」機能でも差分をご確認いただけます。
差分の表示形式を選択してください
PC/Pages/pc_contents.buyConfirm.twig
CHANGED
@@ -38,12 +38,18 @@
|
|
38 |
<th>価格</th>
|
39 |
<td >{{content.price|number_format}}円</td>
|
40 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
<tr>
|
42 |
<th>視聴期限</th>
|
43 |
{% if content.expire_date %}
|
44 |
-
<td>購入後{{content.expire_date}}
|
45 |
{% else %}
|
46 |
-
<td
|
47 |
{% endif %}
|
48 |
</tr>
|
49 |
<tr>
|
38 |
<th>価格</th>
|
39 |
<td >{{content.price|number_format}}円</td>
|
40 |
</tr>
|
41 |
+
{% if content.delivery_end_at %}
|
42 |
+
<tr>
|
43 |
+
<th>配信終了日時</th>
|
44 |
+
<td >{{content.delivery_end_at|date("Y年m月d日 H時i分")}}</td>
|
45 |
+
</tr>
|
46 |
+
{% endif %}
|
47 |
<tr>
|
48 |
<th>視聴期限</th>
|
49 |
{% if content.expire_date %}
|
50 |
+
<td>購入後{{content.expire_date}}日間{% if content.delivery_end_at %}({{content.delivery_end_at|date("Y年m月d日 H時i分")}}に配信終了){% endif %}</td>
|
51 |
{% else %}
|
52 |
+
<td>無期限{% if content.delivery_end_at %}({{content.delivery_end_at|date("Y年m月d日 H時i分")}}に配信終了){% endif %}</td>
|
53 |
{% endif %}
|
54 |
</tr>
|
55 |
<tr>
|