VRFS-3393 merging musician-search2 into develop
This commit is contained in:
parent
aa36b2f215
commit
6a806a05cb
|
|
@ -4,7 +4,6 @@
|
|||
div#musician-search-filter-results.content-wrapper
|
||||
div#musician-search-filter-results-header
|
||||
a#btn-musician-search-builder.button-orange href="#" SEARCH
|
||||
span.musician-search-text Click search button to look for musicians with similar interests, skill levels, etc.
|
||||
a#btn-musician-search-reset.button-grey href="#" RESET
|
||||
div#musician-search-filter-description
|
||||
div.clearall
|
||||
|
|
@ -22,9 +21,9 @@ script#template-musician-search-filter type="text/template"
|
|||
.col-left
|
||||
h2 search musicians
|
||||
.col-right.builder-sort-order
|
||||
.text-label Sort Results By:
|
||||
select.easydropdown name="sort_order"
|
||||
option selected="selected" value="{sort_order}" {sort_order}
|
||||
.text-label Sort Results By:
|
||||
select.easydropdown name="sort_order"
|
||||
option selected="selected" value="{sort_order}" {sort_order}
|
||||
.clearall
|
||||
|
||||
#musician-search-filter-builder-middle.builder-section
|
||||
|
|
@ -35,12 +34,12 @@ script#template-musician-search-filter type="text/template"
|
|||
table#search-filter-genres cellpadding="10" cellspacing="6" width="100%"
|
||||
|
||||
.field.builder-selector
|
||||
label Interests
|
||||
label Interests:
|
||||
select.easydropdown name="interests"
|
||||
option selected="selected" value="{interests}" {interests}
|
||||
|
||||
.field.builder-selector
|
||||
label Studio Sessions Played
|
||||
label Studio Sessions Played:
|
||||
select.easydropdown name="studio_sessions"
|
||||
option selected="selected" value="{studio_sessions}" {studio_sessions}
|
||||
|
||||
|
|
@ -53,12 +52,12 @@ script#template-musician-search-filter type="text/template"
|
|||
|
||||
.col-left
|
||||
.field.builder-selector
|
||||
label Status
|
||||
label Status:
|
||||
select.easydropdown name="skill_level"
|
||||
option selected="selected" value="{skill_level}" {skill_label}
|
||||
|
||||
.field.builder-selector
|
||||
label Concert Gigs Played
|
||||
label Concert Gigs Played:
|
||||
select.easydropdown name="concert_gigs"
|
||||
option selected="selected" value="{concert_gigs}" {concert_gigs}
|
||||
|
||||
|
|
@ -85,25 +84,13 @@ script#template-search-filter-setup-instrument type="text/template"
|
|||
option value="2" Intermediate
|
||||
option value="3" Expert
|
||||
|
||||
script#template-search-filter-setup-genres type="text/template"
|
||||
.genre-option
|
||||
| {% if(data.checked) { %}
|
||||
input value="{{data.id}}" checked="checked" type="checkbox"
|
||||
| {% } else { %}
|
||||
input value="{{data.id}}" type="checkbox"
|
||||
| {% } %}
|
||||
label
|
||||
| {{data.description}}
|
||||
script#template-search-filter-setup-genres type="text/template"
|
||||
tr
|
||||
td <input value="{id}" {checked} type="checkbox" />{description}
|
||||
|
||||
script#template-search-filter-setup-ages type="text/template"
|
||||
.age-option
|
||||
| {% if(data.checked) { %}
|
||||
input value="{{data.id}}" checked="checked" type="checkbox"
|
||||
| {% } else { %}
|
||||
input value="{{data.id}}" type="checkbox"
|
||||
| {% } %}
|
||||
label
|
||||
| {{data.description}}
|
||||
script#template-search-filter-setup-ages type="text/template"
|
||||
tr
|
||||
td <input value="{id}" {checked} type="checkbox" />{description}
|
||||
|
||||
/! Session Row Template
|
||||
script#template-search-musician-row type="text/template"
|
||||
|
|
|
|||
Loading…
Reference in New Issue