toggle_chat.html 504 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<%! from django.utils.translation import ugettext as _ %>
<%! from django.core.urlresolvers import reverse %>

<div id="chat-wrapper">
  <div id="chat-toggle" class="closed">
    <span id="chat-open">${_('Open Chat')} <em class="icon fa fa-chevron-up"></em></span>
    <span id="chat-close">${_('Close Chat')} <em class="icon fa fa-chevron-down"></em></span>
  </div>
  <div id="chat-block">
    ## The Candy.js plugin wants to render in an element with #candy
    <div id="candy"></div>
  </div>
</div>