25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <fieldset
- {%- for key, value in attributes -%}
- {{- ' ' }}{{ key }}="{{ value }}"
- {%- endfor %}>
- <legend>{{ title }}</legend>
- {% if description is not empty %}
- <p>{{ description }}</p>
- {% endif %}
- {# This must match with displayErrors() in scripts.js #}
- {% if errors is iterable and errors|length > 0 %}
- <dl class="errors">
- {% for error in errors %}
- <dd>{{ error }}</dd>
- {% endfor %}
- </dl>
- {% endif %}
- <table width="100%" cellspacing="0">
|