2012-10-05 17:46:07 +02:00
< div class = "row-fluid" >
< div class = "span12" >
2012-10-04 00:09:37 +02:00
< div class = "zephyr_list" 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-10-03 00:36:34 +02:00
< div class = "pull-left" id = "narrowlabel" >
< span id = "currently_narrowed_to" > < / span >
< / div >
2012-10-03 22:50:32 +02:00
< div class = "close" onclick = "show_all_messages()" > × < / div >
2012-09-17 20:59:26 +02:00
< / div >
< div id = "bottom_whitespace" > < / 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 >
2012-10-03 22:50:32 +02:00
< div class = "close composebox-close" onclick = "hide_compose()" > × < / div >
2012-09-27 22:54:27 +02:00
< 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-10-05 23:42:58 +02:00
< div class = "tab-pane active" >
2012-09-17 20:59:26 +02:00
< div class = "zephyr_comp" >
2012-10-03 00:09:18 +02:00
< form action = "/send_message/" method = "post" class = "zephyr" >
2012-10-05 23:42:58 +02:00
< input type = "hidden" name = "type" value = "class" id = "new_message_type" / >
2012-09-17 20:59:26 +02:00
{% 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-10-05 23:42:58 +02:00
< tr id = "class-message" >
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 >
2012-10-05 23:42:58 +02:00
< tr id = "personal-message" >
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-10-05 23:42:58 +02:00
< td class = "messagebox" >
2012-09-26 22:19:01 +02:00
< div class = "zephyr_content" >
2012-10-05 23:42:58 +02:00
< textarea class = "zephyr_message" name = "content" id = "new_zephyr" value = "" placeholder = "Compose your message here..." > < / textarea >
< input type = "submit" value = "Send" class = "btn send_zephyr" / >
2012-09-26 22:19:01 +02:00
< / 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 >