12 lines
604 B
HTML
12 lines
604 B
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
<li class="field-group course-advanced-policy-list-item">
|
|
<div class="field is-not-editable text key" id="<%= key %>">
|
|
<label for="<%= keyUniqueId %>">Policy Key:</label>
|
|
<input readonly title="This field is disabled: policy keys cannot be edited." type="text" class="short policy-key" id="<%= keyUniqueId %>" value="<%= key %>" />
|
|
</div>
|
|
|
|
<div class="field text value">
|
|
<label for="<%= valueUniqueId %>">${_("Policy Value:")}</label>
|
|
<textarea class="json text" id="<%= valueUniqueId %>"><%= value %></textarea>
|
|
</div>
|
|
</li> |