76 lines
2.7 KiB
Plaintext
76 lines
2.7 KiB
Plaintext
<!-- Session Settings Dialog -->
|
|
<div class="dialog" layout="dialog" layout-id="session-settings"
|
|
style="min-width: 700px; max-width:700px; min-height: 320px; max-height:320px;">
|
|
|
|
<!-- dialog header -->
|
|
<div class="content-head">
|
|
<%= image_tag "content/icon_settings_lg.png",
|
|
{:width => 18, :height => 18, :class => "content-icon"} %>
|
|
<h1>update session settings</h1>
|
|
</div>
|
|
|
|
<div class="dialog-inner">
|
|
<form id="session-settings-dialog">
|
|
<input type="hidden" name="id"/>
|
|
<!-- register left column -->
|
|
<div class="left mr35 w40">
|
|
|
|
<!-- genre box -->
|
|
Genre:<br />
|
|
|
|
<div id="session-settings-genre">
|
|
<%= render "genreSelector" %>
|
|
</div>
|
|
<br />
|
|
<br />
|
|
|
|
<div class="left mr30">
|
|
Musician Access:<br />
|
|
<select id="session-settings-musician-access" name="musician_access">
|
|
<option value="true">Public</option>
|
|
<option value="false">Private</option>
|
|
</select><br />
|
|
|
|
<input type="radio" value="false" name="approval_required" checked="checked" /> Open <br />
|
|
<input type="radio" value="true" name="approval_required" /> By Approval
|
|
</div>
|
|
<div class="left">
|
|
|
|
Fan Access:<br />
|
|
<select name="fan_access">
|
|
<option value="true">Public</option>
|
|
<option value="false">Private</option>
|
|
</select>
|
|
<br />
|
|
<input type="radio" name="fan_chat" value="true" disabled="disabled" /> Chat <br />
|
|
<input type="radio" name="fan_chat" value="false" disabled="disabled" /> No Fan Chat
|
|
|
|
</div>
|
|
</div><!-- end left column -->
|
|
|
|
<!-- right column -->
|
|
<div class="left ml20 w50">
|
|
|
|
<!-- description -->
|
|
Description:<br />
|
|
<textarea rows=9 name="description" class="settings-session-description">Doing some experimental stuff. Lots of freeform with plenty of opportunity for solos. Intermediate skill level or better only please.</textarea>
|
|
<br />
|
|
<br />
|
|
<div class="right">
|
|
<a layout-action="close" class="button-grey">CANCEL</a>
|
|
<a id="session-settings-dialog-submit" href="#" class="button-orange">UPDATE SETTINGS</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
<!-- end right column -->
|
|
<br clear="all" />
|
|
|
|
</form>
|
|
</div>
|
|
<!-- end inner -->
|
|
|
|
</div>
|
|
|
|
</div>
|