Skip to content

Instantly share code, notes, and snippets.

@Mozu-CS
Created February 25, 2016 22:59
Show Gist options
  • Save Mozu-CS/ad1b55fafcb4d2fcb196 to your computer and use it in GitHub Desktop.
Save Mozu-CS/ad1b55fafcb4d2fcb196 to your computer and use it in GitHub Desktop.
<select name="cc-static" id="cc-static">
<option>---</option>
<option {% if model.expireYear == "2014" %}selected="selected"{% endif %} value="2014">2014</option>
<option {% if model.expireYear == "2015" %}selected="selected"{% endif %} value="2015">2015</option>
<option {% if model.expireYear == "2016" %}selected="selected"{% endif %} value="2016">2016</option>
<option {% if model.expireYear == "2017" %}selected="selected"{% endif %} value="2017">2017</option>
<option {% if model.expireYear == "2018" %}selected="selected"{% endif %} value="2018">2018</option>
<option {% if model.expireYear == "2019" %}selected="selected"{% endif %} value="2019">2019</option>
<option {% if model.expireYear == "2020" %}selected="selected"{% endif %} value="2020">2020</option>
<option {% if model.expireYear == "2021" %}selected="selected"{% endif %} value="2021">2021</option>
<option {% if model.expireYear == "2022" %}selected="selected"{% endif %} value="2022">2022</option>
<option {% if model.expireYear == "2023" %}selected="selected"{% endif %} value="2023">2023</option>
<option {% if model.expireYear == "2024" %}selected="selected"{% endif %} value="2024">2024</option>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment