tab_module.html 385 Bytes
Newer Older
Nimisha Asthagiri committed
1 2 3 4 5 6 7
<%page expression_filter="h"/>
<%!
from openedx.core.djangolib.js_utils import (
    dump_js_escaped_json, js_escaped_string
)
%>

8 9
<div id="tab_${id}" class="tab">
  <ul class="navigation"></ul>
pmitros committed
10
</div>
11 12 13 14

<%block name="js_extra">
<script type="text/javascript">
  $(function(){
Nimisha Asthagiri committed
15
      new Tab('${id | n, js_escaped_string}', ${items | n, dump_js_escaped_json});
16 17 18
  });
</script>
</%block>