Skip to content

Instantly share code, notes, and snippets.

@tbthorpe
Created February 27, 2015 16:41
Show Gist options
  • Save tbthorpe/028d4a3910ca21f347e5 to your computer and use it in GitHub Desktop.
Save tbthorpe/028d4a3910ca21f347e5 to your computer and use it in GitHub Desktop.
{% if 'take_home' in form.fields %}
{% with field=form.take_home %}
<div id="{{ field.name }}-field"
class="field {% if field.value != 'none' %}hidden{% endif %} {% if field.errors %}error{% endif %}">
<label class="field-label">
{{ field }}
{% blocktrans with type=MULTISITE.item_type %}
I will take the {{ type }} home with me
{% endblocktrans %}
</label>
</div>
{% endwith %}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment