Skip to content

Instantly share code, notes, and snippets.

@rande
Created February 7, 2011 16:45
Show Gist options
  • Save rande/814692 to your computer and use it in GitHub Desktop.
Save rande/814692 to your computer and use it in GitHub Desktop.
{% set form %}
{% block form %}{% endblock %}
{% endset %}
{% if form|length > 0 %}
<div class="sonata-ba-form">
{{ form|raw }}
</div>
{% endif %}
@docteurklein
Copy link

{% block form %}
    {% set form %}
        {{ parent() }}
    {% endset %}
    {% if form|length > 0 %}
        <div class="sonata-ba-form">
            {{ form }}
        </div>
    {% endif %}
{% endblock %}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment