Changeset 4073cae3c3532761ff04d651f33b3ec7c6436314
- Timestamp:
- 13.05.2013 10:16:01 (8 years ago)
- Branches:
- b66903eafbcb1d49112014abc82c8bf683413db0
- Children:
- bfdbd17715d099c2e913a6139c1c38f3db1fecbc
- Parents:
- b5bbc1139f2490b82e2d4c754d8aeb6aefc86835
- git-author:
- Stanislaw Klekot <dozzie@…> (13.05.2013 10:16:01)
- git-committer:
- Stanislaw Klekot <dozzie@…> (13.05.2013 10:16:01)
- Location:
- templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
templates/create_macro.html
rdb7f89 r4073ca 36 36 <select name="result"> 37 37 {% for result in supported_result_types %} 38 {% if result == macro.result %} 39 <option value="{{ result }}" selected="selected">{{ result }}</option> 40 {% else %} 38 41 <option value="{{ result }}">{{ result }}</option> 42 {% endif %} 39 43 {% endfor %} 40 44 </select> … … 54 58 <select name="protocol"> 55 59 {% for proto in supported_protocols %} 60 {% if proto == macro.protocol %} 61 <option value="{{ proto }}" selected="selected">{{ proto }}</option> 62 {% else %} 56 63 <option value="{{ proto }}">{{ proto }}</option> 64 {% endif %} 57 65 {% endfor %} 58 66 </select> -
templates/edit_macro.html
rdb7f89 r4073ca 36 36 <select name="result"> 37 37 {% for result in supported_result_types %} 38 {% if result == macro.result %} 39 <option value="{{ result }}" selected="selected">{{ result }}</option> 40 {% else %} 38 41 <option value="{{ result }}">{{ result }}</option> 42 {% endif %} 39 43 {% endfor %} 40 44 </select> … … 54 58 <select name="protocol"> 55 59 {% for proto in supported_protocols %} 60 {% if proto == macro.protocol %} 61 <option value="{{ proto }}" selected="selected">{{ proto }}</option> 62 {% else %} 56 63 <option value="{{ proto }}">{{ proto }}</option> 64 {% endif %} 57 65 {% endfor %} 58 66 </select>
Note: See TracChangeset
for help on using the changeset viewer.