Files
edx-platform/cms/templates/js/advanced_entry.underscore
Andytr1 b4f144ef62 EDUCATOR-5304 - update help text (#25264)
* EDUCATOR-5304 - update help text

* EDUCATOR-5304 - update help text - escape underscore

* EDUCATOR-5304 - update help text - escape underscore 2
2020-10-06 16:30:02 -04:00

18 lines
747 B
Plaintext

<% if (!hidden) { %>
<li class="field-group course-advanced-policy-list-item <%- deprecated ? 'is-deprecated' : '' %>">
<div class="field is-not-editable text key" id="<%- key %>">
<h3 class="title" id="<%- keyUniqueId %>"><%- display_name %></h3>
</div>
<div class="field text value">
<label class="sr" for="<%- valueUniqueId %>"><%- display_name %></label>
<textarea class="json text" id="<%- valueUniqueId %>"><%- value %></textarea>
<% // xss-lint: disable=underscore-not-escaped %>
<span class="tip tip-stacked"><%= help %></span>
</div>
<% if (deprecated) { %>
<span class="status"><%- gettext("Deprecated") %></span>
<% } %>
</li>
<% } %>