Files
dss/templates/views/UserEditView.html
2013-06-19 19:24:50 +01:00

152 lines
8.9 KiB
HTML
Executable File

{% verbatim %}
<div id="title-area">
<p class="page-header">User details</p>
</div>
<div id="layout-area" class="hero-well">
<div class="row">
<form enctype="multipart/form-data" method="post" class="form-horizontal" id="id-new-user-form">
<input type="hidden" name="profile[id]" value="<%= profile.id %>"/>
<fieldset>
<div class="span6">
<div class="clearfix control-group" id="div_display_name">
<label class="control-label" for="display_name">Display name</label>
<div class="controls">
<input type="text" maxlength="75" name="profile[display_name]" class="textinput textInput"
id="profile[display_name]"
value="<%= profile.display_name %>">
</div>
</div>
<div class="clearfix control-group" id="div_slug">
<label class="control-label" for="slug">Profile Slug</label>
<div class="controls">
<input type="text" maxlength="75" name="profile[slug]" class="textinput textInput"
id="profile[slug]"
value="<%= profile.slug %>">
</div>
</div>
<div class="clearfix control-group" id="div_email">
<label class="control-label" for="email">E-mail address</label>
<div class="controls">
<input type="text" maxlength="75" name="email" class="textinput textInput" id="email"
value="<%= email %>">
</div>
</div>
<div class="clearfix control-group" id="div_first_name">
<label class="control-label " for="first_name">First name</label>
<div class="controls">
<input type="text" maxlength="30" name="first_name" class="textinput textInput"
id="first_name"
value="<%= first_name %>">
</div>
</div>
<div class="clearfix control-group" id="div_last_name">
<label class="control-label " for="last_name">Last name</label>
<div class="controls">
<input type="text" maxlength="30" name="last_name" class="textinput textInput"
id="last_name"
value="<%= last_name %>">
</div>
</div>
<div class="clearfix control-group" id="div_avatar_image_select">
<label class="control-label requiredField" for="avatar_image_select_0">Avatar Image<span
class="asteriskField">*</span></label>
<div class="controls">
<label class="radio">Use gravatar image.<input type="radio" id='avatar_gravatar' value='gravatar' name="profile[avatar_type]" /></label>
<label class="radio">Use Twitter/Facebook image.<input type="radio" id='avatar_social' value='social' name="profile[avatar_type]" /></label>
<label class="radio">Use custom image.<input type="radio" id='avatar_custom' value='custom' name="profile[avatar_type]" /></label>
</div>
</div>
<div class="clearfix control-group" id="div_avatar_image_upload">
<label class="control-label requiredField" for="fileupload-new">Upload image<span
class="asteriskField">*</span></label>
<div class="fileupload fileupload-new pull-left" data-provides="fileupload"
id="div_avatar_image">
<div class="fileupload-new thumbnail" style="width: 200px; height: 150px;">
<img src="<%= profile.avatar_image %>"/>
</div>
<div class="fileupload-preview fileupload-exists thumbnail"
style="max-width: 200px; max-height: 150px; line-height: 20px;">
</div>
<div>
<span class="btn btn-file">
<span class="fileupload-new">
Select image
</span>
<span class="fileupload-exists">
Change
</span>
<input id="avatar_image" type="file" size="45" name="avatar_image" class="input">
</span>
<a href="#" class="btn fileupload-exists" data-dismiss="fileupload">Remove</a>
</div>
</div>
</div>
</div>
<div class="span6">
<div class="row">
<p>
<h5>Tell us a bit about yourself.</h5>
</p>
<textarea style="width: 100%" name="profile[description]" id="profile[description]" rows="5"><%= profile.description %></textarea>
</div>
<div class="row">
<p>
<h5>What can we share about you?</h5>
</p>
<div class="span5 pull-left">
<h5>Share this activity</h5>
<table class="table dss-option-table table-condensed table-bordered">
<tbody>
<tr class="info">
<td>Likes</td>
<td>Favourites</td>
<td>Comments</td>
</tr>
<tr>
<td>
<input type="checkbox" name="profile[activity_sharing_likes]"
id="activity_sharing_likes" <%= renderCheckbox(profile.activity_sharing_likes) %>>
</td>
<td>
<input type="checkbox" name="profile[activity_sharing_favourites]"
id="activity_sharing_favourites" <%= renderCheckbox(profile.activity_sharing_favourites) %>>
</td>
<td>
<input type="checkbox" name="profile[activity_sharing_comments]"
id="activity_sharing_comments" <%= renderCheckbox(profile.activity_sharing_comments) %>>
</td>
</tr>
</tbody>
</table>
</div>
<div class="span5 pull-right">
<h5>On these networks</h5>
<table class="table dss-option-table table-condensed table-bordered">
<tbody>
<tr class="info">
<td>Facebook</td>
<td>Twitter</td>
</tr>
<tr>
<td style="text-align: center; vertical-align: middle">
<input type="checkbox" name="profile[activity_sharing_networks_facebook]" <%= renderCheckbox(profile.activity_sharing_networks_facebook) %>>
</td>
<td>
<input type="checkbox" name="profile[activity_sharing_networks_twitter]" <%= renderCheckbox(profile.activity_sharing_networks_twitter) %>>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</fieldset>
</form>
</div>
<div class="row">
<div class="form-actions">
<button id="save-changes" class="btn">Save changes</button>
</div>
</div>
</div>
{% endverbatim %}