2012-09-24 21:02:13 +02:00
< div class = "container-fluid" >
< div class = "row-fluid" >
< div class = "span8" >
2012-09-17 20:59:26 +02:00
< div id = "wrapper" >
2012-09-24 16:52:48 +02:00
< div class = "zephyr_list scrolling-tab" id = "main_div" >
2012-09-26 22:44:38 +02:00
< table id = "loading_indicator" >
< tr > < td id = "loading_spinner" > < / td > < td > Loading...< / td > < / tr >
< / table >
2012-09-17 20:59:26 +02:00
< 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-10-02 20:47:01 +02:00
< tbody >
< / tbody >
2012-09-13 22:00:11 +02:00
< / table >
2012-09-17 20:59:26 +02:00
< br / > < br / >
< div class = "row" id = "narrowbox" >
2012-09-27 21:18:12 +02:00
< span > Showing < / span >
< 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 >
2012-09-17 20:59:26 +02:00
< / div >
< div id = "bottom_whitespace" > < / div >
< / div >
< / div >
2012-09-26 21:34:36 +02:00
< div class = "tabbable zephyr_compose" id = "zephyr_compose" >
2012-09-17 20:59:26 +02:00
< div class = "tab-content" >
2012-09-27 22:54:27 +02:00
< div class = "alert" id = "send-status" > < / div >
< div class = "pull-right" > < button type = "button" class = "close" onclick = "hide_compose()" > × < / button > < / div >
< div id = "stream_or_huddle" >
< ul class = "nav nav-pills nav-stacked" id = "zephyr-type-tabs" >
< li class = "active" > < a href = "#class-message" data-toggle = "pill" > Stream< / a > < / li >
< li > < a href = "#personal-message" data-toggle = "pill" > Huddle< / a > < / li >
< / ul >
< / div >
2012-09-17 20:59:26 +02:00
< div class = "tab-pane active" id = "class-message" >
< div class = "zephyr_comp" >
2012-10-03 00:09:18 +02:00
< form action = "/send_message/" method = "post" class = "zephyr" >
2012-09-17 20:59:26 +02:00
< input type = "hidden" name = "type" value = "class" / >
{% csrf_token %}
2012-10-02 20:47:01 +02:00
< table class = "zephyr_compose_table" >
2012-09-17 20:59:26 +02:00
< tbody >
2012-10-02 20:47:01 +02:00
< tr style = "visibility: collapse;" >
< td class = "ztable_col1" / >
< td class = "ztable_col2" / >
< td class = "ztable_col3" / >
< / tr >
2012-09-26 22:19:01 +02:00
< tr >
2012-09-28 00:03:16 +02:00
< td colspan = "2" class = "zephyr_newstyle_class" >
2012-09-26 22:19:01 +02:00
< input type = "text" class = "zephyr_recipient_box" name = "class" id = "class" value = "" placeholder = "Stream" autocomplete = "off" / >
< / td >
2012-09-28 00:03:16 +02:00
< td class = "zephyr_newstyle_instance" >
2012-09-26 22:19:01 +02:00
< input type = "text" class = "zephyr_recipient_box" name = "instance" id = "instance" value = "" placeholder = "Topic" autocomplete = "off" / >
< / td >
< / tr >
< tr >
2012-09-27 21:37:14 +02:00
< td class = "zephyr_picture" > < / td >
2012-09-26 22:19:01 +02:00
< td class = "pointer" > < / td >
< td class = "messagebox" >
< div class = "zephyr_content" >
2012-10-02 23:25:14 +02:00
< textarea class = "zephyr_message" name = "content" id = "new_zephyr" value = "" placeholder = "Compose your message here..." > < / textarea >
2012-09-26 22:19:01 +02:00
< input type = "submit" value = "Send" class = "btn send_zephyr" / >
< / div >
< / td >
< / tr >
2012-09-17 20:59:26 +02:00
< / tbody >
< / table >
< / form >
< / div >
< / div >
< div class = "tab-pane" id = "personal-message" >
< div class = "zephyr_comp" >
2012-10-03 00:09:18 +02:00
< form action = "/send_message/" method = "post" class = "zephyr" >
2012-09-17 20:59:26 +02:00
< input type = "hidden" name = "type" value = "personal" / >
{% csrf_token %}
2012-10-02 20:47:01 +02:00
< table class = "zephyr_compose_table" >
2012-09-17 20:59:26 +02:00
< tbody >
2012-10-02 20:47:01 +02:00
< tr style = "visibility: collapse;" >
< td class = "ztable_col1" / >
< td class = "ztable_col2" / >
< td class = "ztable_col3" / >
< / tr >
2012-09-26 22:19:01 +02:00
< tr >
2012-09-28 20:34:09 +02:00
< td colspan = "3" class = "zephyr_newstyle_pm" >
Huddle with < input type = "text" class = "zephyr_recipient_box" name = "recipient" id = "recipient" value = "" placeholder = "one or more of your friends..." autocomplete = "off" / >
2012-09-26 22:19:01 +02:00
< / td >
< / tr >
< tr >
2012-09-27 21:37:14 +02:00
< td class = "zephyr_picture" > < / td >
2012-09-26 22:19:01 +02:00
< td class = "pointer" > < / td >
2012-09-28 19:42:56 +02:00
< td class = "messagebox personal-message" >
2012-09-26 22:19:01 +02:00
< div class = "zephyr_content" >
2012-10-02 23:25:14 +02:00
< textarea class = "zephyr_message" name = "content" id = "new_personal_zephyr" value = "" placeholder = "Compose your message here..." > < / textarea >
2012-09-26 22:19:01 +02:00
< input type = "submit" name = "personal_zephyr" value = "Send" class = "btn send_zephyr" / >
< / div >
< / td >
< / tr >
2012-09-17 20:59:26 +02:00
< / tbody >
< / table >
< / form >
< / div >
< / div >
< / div >
< / div >
2012-09-24 21:02:13 +02:00
< / div >
< div class = "span1" id = "nav-indicators" >
< div id = "top-nav" >
< i class = "icon-arrow-up" onclick = "simulate_keypress(33);" > < / i >
< / div >
< div id = "bottom-nav" >
2012-09-25 15:47:22 +02:00
< i class = "icon-fast-forward" onclick = "go_to_high_water_mark();" > < / i >
2012-09-24 21:02:13 +02:00
< br / >
< i class = "icon-arrow-down" onclick = "simulate_keypress(34);" > < / i >
< / div >
< / div >
< / div >
< / div >