{% extends "admin/base.html" %} {% block title %}{{ theme.label }} カスタマイズ{% endblock %} {% block content %} {% if message %}
{{ message }}
{% endif %}
{% if grouped_settings.site_identity %}

サイトID

{% for setting in grouped_settings.site_identity %}
{% if setting.description %}

{{ setting.description }}

{% endif %}
{% if setting.value %} {{ setting.label }} {% else %} 画像未設定 {% endif %}
{% endfor %}
{% endif %} {% if grouped_settings.header %}

ヘッダー・背景

{% for setting in grouped_settings.header %}
{% if setting.description %}

{{ setting.description }}

{% endif %}
{% if setting.value %} {{ setting.label }} {% else %} 画像未設定 {% endif %}
{% endfor %}
{% endif %} {% if grouped_settings.colors %}

カラー

{% for setting in grouped_settings.colors %}
{% endfor %}
{% endif %} {% if grouped_settings.fonts %}

フォント

{% for setting in grouped_settings.fonts %}
{% endfor %}
{% endif %} {% if grouped_settings.spacing %}

スペーシング

{% for setting in grouped_settings.spacing %}
{% endfor %}
{% endif %} {% if grouped_settings.custom_css %}

カスタムCSS

{% for setting in grouped_settings.custom_css %}
{% if setting.description %}

{{ setting.description }}

{% endif %}
{% endfor %}
{% endif %}
プレビュー
{% endblock %}