Forked from olafghanizadeh/gist:2ef54ea7a058f0c743109c1f1b3a0a34
Created
December 7, 2019 17:48
-
-
Save developerfred/a5cc1a9aa99a5622fd0be325ae1ca778 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
{% block content %} | |
<div class="row card-columns"> | |
{% for i in index %} | |
<div class="col-12"> | |
<div class="card my-5"> | |
<h3 class="card-header">Choice {{ i }}</h3> | |
<div class="card-body px-5"> | |
<div class="row card-deck"> | |
{% for choice in form.choice_1 %} | |
<div class="card"> | |
<h4 class="card-header">{{ choice.choice_label }}</h4> | |
<div class="card-body"> | |
{{ choice.tag }} | |
</div> | |
</div> | |
{% endfor %} | |
</div> | |
</div> | |
</div> | |
</div> | |
{% endfor %} | |
</div> | |
{% next_button %} | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment