2013-08-13 12:52:26 +02:00
< div class = "right-sidebar" id = "right-sidebar" >
2013-06-11 16:41:02 +02:00
< div class = "alert alert_sidebar alert-error home-error-bar" id = "connection-error" >
2014-07-15 23:21:03 +02:00
< strong > Unable to connect to {{product_name}}.< / strong > Updates may be delayed.
2013-06-11 16:41:02 +02:00
< br / > < br / > Retrying soon... < br / > < br / > < a class = "restart_get_updates_button" > Try now< / a > .
< / div >
2013-06-18 20:03:46 +02:00
< div class = "alert alert_sidebar alert-error home-error-bar" id = "get_old_messages_error" >
2014-07-15 23:21:03 +02:00
< strong > Unable to connect to {{product_name}}.< / strong > Could not fetch messages.
2013-06-18 20:03:46 +02:00
< br / > < br / > Retrying soon... < br / > < br / >
< / div >
2013-07-31 23:01:24 +02:00
< div class = "alert alert_sidebar alert-error home-error-bar" id = "zephyr-mirror-error" >
2013-08-27 17:28:11 +02:00
< strong > Your Zephyr mirror is not working.< / strong >
2013-08-27 22:07:59 +02:00
< span id = "normal-zephyr-mirror-error-text" > We
2013-08-28 00:03:29 +02:00
recommend that you < a class = "webathena_login" > give
2014-07-15 23:21:03 +02:00
{{product_name}} the ability to mirror the messages for you via
2013-08-27 22:07:59 +02:00
WebAthena< / a > . If you'd prefer, you can instead
2013-08-27 17:28:11 +02:00
< a href = "/zephyr-mirror" target = "_blank" > run the Zephyr mirror script yourself< / a >
2013-08-27 22:07:59 +02:00
in a screen session.< / span >
< span id = "desktop-zephyr-mirror-error-text" class = "notdisplayed" > To fix
this, you'll need
to use < a href = "https://zephyr.zulip.com" > the web interface< / a > < / span >
2013-07-31 23:01:24 +02:00
< / div >
< div class = "alert alert_sidebar alert-error home-error-bar" id = "home-error" > < / div >
2015-02-05 23:19:14 +01:00
{% if send_to_prod %}
2014-05-21 22:13:27 +02:00
< div id = "staging-warning" class = "alert alert_sidebar alert-error" >
2015-02-05 23:19:14 +01:00
< p > This realm uses production. Please login into
< a href = "https://zulip.com/" > zulip.com< / a >
2014-05-21 22:13:27 +02:00
to be part of the conversation.< / p >
< / div >
2014-07-09 06:27:26 +02:00
< script >
$(function () {
if (window.bridge !== undefined) {
// Desktop app only supports "prompt", not "alert" or "confirm" :/
2015-02-05 23:19:14 +01:00
window.prompt("You're currently on the staging {{product_name}} server, but everyone else is on the production server.\n\nGoing forward, please run {{product_name}} with the following flag to use the staging server:", "--site https://zulip.com");
window.location.assign("https://zulip.com");
2014-07-09 06:27:26 +02:00
} else {
2015-02-05 23:19:14 +01:00
var res = window.confirm("You're currently on the staging {{product_name}} server, but everyone else is on the product_name server. Please use https://zulip.com to use {{product_name}}.");
2014-07-25 00:48:18 +02:00
if (feature_flags.is_og_zulip_user & & !res) { return; }
2015-02-05 23:19:14 +01:00
window.location.assign("https://zulip.com");
2014-07-09 06:27:26 +02:00
}
});
< / script >
2014-05-21 22:13:27 +02:00
{% endif %}
2013-07-31 23:01:24 +02:00
< div class = "alert alert_sidebar alert-error home-error-bar" id = "reloading-application" > < / div >
2013-11-13 16:59:03 +01:00
{% if enable_feedback %}
2013-05-13 23:03:50 +02:00
< div id = "feedback_section" >
2014-03-05 20:39:57 +01:00
< button type = "button" class = "btn btn-default btn-large" id = "feedback_button" >
2013-05-13 23:03:50 +02:00
< i class = "icon-vector-comment" > < / i > Send feedback
< / button >
< / div >
2013-11-13 16:59:03 +01:00
{% endif %}
2013-09-12 22:02:55 +02:00
< div id = "user-list" >
< div id = "userlist-header" >
< h4 class = 'sidebar-title' id = 'userlist-title' > USERS< / h4 >
< / div >
2014-01-14 17:08:59 +01:00
< input class = "user-list-filter" type = "text" placeholder = "Search people" / >
2013-09-12 22:02:55 +02:00
< ul id = "user_presences" class = "filters scrolling_list" > < / ul >
2013-06-24 22:22:16 +02:00
{% if show_invites %}
2013-09-12 22:02:55 +02:00
< a id = "invite-user-link" href = "#invite-user" data-toggle = "modal" > < i class = "icon-vector-plus-sign" > < / i > Invite coworkers< / a >
2013-06-24 22:22:16 +02:00
{% endif %}
2013-09-12 22:02:55 +02:00
< / div >
2013-10-18 00:56:49 +02:00
< div id = "group-pm-list" >
< div id = "group-pm-header" >
2013-11-09 16:15:51 +01:00
< h4 class = 'sidebar-title' id = 'group-pm-title' > GROUP PMs< / h4 >
2013-10-18 00:56:49 +02:00
< / div >
< ul id = "group-pms" class = "filters scrolling_list" >
< / ul >
< / div >
2013-02-28 18:57:05 +01:00
< / div >