course_info_handouts.underscore 743 Bytes
Newer Older
1
<a href="#" class="edit-button"><span class="edit-icon"></span>Edit</a>
2

3
<h2 class="title">Course Handouts</h2>
4 5
<%if (model.get('data') != null) { %>
  <div class="handouts-content">
6

7 8
  </div>
<% } else {%>
David Baumgold committed
9
  <p>${_("You have no handouts defined")}</p>
10
<% } %>
11
<form class="edit-handouts-form" style="display: block;">
12
  <div class="message message-status error" name="handout_html_error" id="handout_error"><%=gettext("There is invalid code in your content. Please check to make sure it is valid HTML.")%></div>
13 14 15 16 17 18 19 20
  <div class="row">
    <textarea class="handouts-content-editor text-editor"></textarea>
  </div>
  <div class="row">
    <a href="#" class="save-button">Save</a>
    <a href="#" class="cancel-button">Cancel</a>
  </div>
</form>