2012-09-17 20:59:26 +02:00
|
|
|
|
<div id="wrapper">
|
|
|
|
|
<div class="zephyr_list" id="main_div">
|
|
|
|
|
<br/><br/>
|
2012-09-20 20:27:43 +02:00
|
|
|
|
<table class="zephyr_table focused_table" id="zhome">
|
2012-09-17 20:59:26 +02:00
|
|
|
|
<tbody>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2012-09-20 20:27:43 +02:00
|
|
|
|
<table class="zephyr_table" id="zfilt">
|
2012-09-13 22:00:11 +02:00
|
|
|
|
<tbody>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2012-09-17 20:59:26 +02:00
|
|
|
|
<br/><br/>
|
|
|
|
|
<div class="row" id="narrowbox">
|
|
|
|
|
<div class="input-prepend input-append pull-left">
|
|
|
|
|
<button id="show_all_messages" class="btn" disabled=disabled onclick="show_all_messages()"><i class="icon-arrow-left"></i></button>
|
|
|
|
|
<span class="add-on"><span class="badge"><span id="currently_narrowed_to"></span><i class="badge_close_button icon-remove-sign icon-white" onclick="show_all_messages()"></i></span></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="bottom_whitespace"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="tabbable container zephyr_compose" id="zephyr_compose">
|
|
|
|
|
<ul class="nav nav-tabs" id="zephyr-type-tabs">
|
|
|
|
|
<li class="active"><a href="#class-message" data-toggle="tab">Stream</a></li>
|
|
|
|
|
<li><a href="#personal-message" data-toggle="tab">Huddle</a></li>
|
|
|
|
|
<li class="alert" id="send-status"></li>
|
|
|
|
|
<li class="pull-right"><button type="button" class="close" onclick="hide_compose()">×</button></li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<div class="tab-content">
|
|
|
|
|
<div class="tab-pane active" id="class-message">
|
|
|
|
|
<div class="zephyr_comp">
|
|
|
|
|
<br/>
|
|
|
|
|
<form action="/zephyr/" method="post" class="zephyr">
|
|
|
|
|
<input type="hidden" name="type" value="class" />
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
<table>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="pointer"></td>
|
|
|
|
|
<td class="zephyr_recipient">
|
|
|
|
|
<p>
|
|
|
|
|
<span class="zephyr_label_clickable zephyr_class">
|
2012-09-19 17:51:53 +02:00
|
|
|
|
<input type="text" class="zephyr_recipient_box" name="class" id="class" value="" placeholder="Stream" autocomplete="off"/>
|
2012-09-17 20:59:26 +02:00
|
|
|
|
</span>
|
|
|
|
|
<br/>
|
|
|
|
|
<span class="zephyr_label_clickable zephyr_instance">
|
2012-09-19 17:51:53 +02:00
|
|
|
|
<input type="text" class="zephyr_recipient_box" name="instance" id="instance" value="" placeholder="Topic" autocomplete="off"/>
|
2012-09-17 20:59:26 +02:00
|
|
|
|
</span>
|
|
|
|
|
</p>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="messagebox compose">
|
2012-09-19 19:39:34 +02:00
|
|
|
|
<img class="profile_picture" src="https://secure.gravatar.com/avatar/{{ email_hash }}?d=identicon&s=30"/>
|
2012-09-17 20:59:26 +02:00
|
|
|
|
<div class="zephyr_content">
|
|
|
|
|
<textarea class="zephyr_message" name="new_zephyr" id="new_zephyr" value="" placeholder="Compose your message here..."/></textarea>
|
|
|
|
|
<input type="submit" value="Send" class="btn send_zephyr"/>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-pane" id="personal-message">
|
|
|
|
|
<div class="zephyr_comp">
|
|
|
|
|
<br/>
|
|
|
|
|
<form action="/zephyr/" method="post" class="zephyr form-inline">
|
|
|
|
|
<input type="hidden" name="type" value="personal" />
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
<table>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="pointer"></td>
|
|
|
|
|
<td><label class="pull-right">Huddle with</label></td>
|
2012-09-19 17:51:53 +02:00
|
|
|
|
<td><input class="input-xlarge" type="text" name="recipient" id="recipient" value="" placeholder="one or more of your friends" autocomplete="off"/></td>
|
2012-09-17 20:59:26 +02:00
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="pointer"></td>
|
|
|
|
|
<td class="zephyr_recipient"></td>
|
|
|
|
|
<td class="messagebox compose">
|
2012-09-19 19:39:34 +02:00
|
|
|
|
<img class="profile_picture" src="https://secure.gravatar.com/avatar/{{ email_hash }}?d=identicon&s=30"/>
|
2012-09-17 20:59:26 +02:00
|
|
|
|
<div class="zephyr_content">
|
|
|
|
|
<textarea class="zephyr_message" name="new_zephyr" id="new_personal_zephyr" value="" placeholder="Compose your message here..."/></textarea>
|
|
|
|
|
<input type="submit" name="personal_zephyr" value="Send" class="btn send_zephyr"/>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|