All pastes #2104061 Raw Edit

Untitled

public text v1 · immutable
#2104061 ·published 2012-01-19 13:50 UTC
rendered paste body
{% block field_label %}
  {% if required %}
    {% if attr.class is defined %}
      {% set attr = attr|merge({"class": attr.class ~ " required"}) %}
    {% else %}
      {% set attr = attr|merge({"class": "required"}) %}
    {% endif %}
  {% endif %}
  <label for="{{id}}"{% for v in attr %} {{loop.index}}="{{v}}"{% endfor %}>{{label|trans}}{% if required%} (*){% endif %}</label>
{% endblock %}