Created
February 27, 2015 16:41
-
-
Save tbthorpe/028d4a3910ca21f347e5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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