Merge pull request #13087 from edx/clrux/ac-543

AC-543 fixing bulk cert exception implicit labels
This commit is contained in:
Chris
2016-08-01 12:16:06 -04:00
committed by GitHub
2 changed files with 12 additions and 13 deletions

View File

@@ -1,16 +1,15 @@
<h3 class="hd hd-3"><%- gettext("Generate Exception Certificates") %></h3>
<p class="under-heading">
<label>
<input type='radio' name='generate-exception-certificates-radio' checked="checked" value='new' aria-describedby='generate-exception-certificates-radio-new-tip'>
<span id='generate-exception-certificates-radio-new-tip'><%- gettext('Generate certificates for all users on the Exception list who do not yet have a certificate') %></span>
</label>
<br/>
<label>
<input type='radio' name='generate-exception-certificates-radio' value='all' aria-describedby='generate-exception-certificates-radio-all-tip'>
<span id='generate-exception-certificates-radio-all-tip'><%- gettext('Generate a Certificate for all users on the Exception list') %></span>
</label>
</p>
<fieldset class="under-heading">
<legend>Certificate exceptions group selection</legend>
<label>
<input type='radio' name='generate-exception-certificates-radio' checked="checked" value='new'>
<%- gettext('All users on the Exception list who do not yet have a certificate') %>
</label><br />
<label>
<input type='radio' name='generate-exception-certificates-radio' value='all'>
<%- gettext('All users on the Exception list') %>
</label>
</fieldset>
<button id="generate-exception-certificates" class="btn-blue" type="button"><%- gettext('Generate Exception Certificates') %></button>
<br/>
<% if (certificates.length === 0) { %>

View File

@@ -26,7 +26,7 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_
<div class="bottom-bar">
<label>
<span class="label-text sr">{{add_placeholder}}</span>
<input type="text" id="add-field" name="add-field" class="add-field" placeholder="{{add_placeholder}}">
<input type="text" name="add-field" class="add-field" placeholder="{{add_placeholder}}">
</label>
<input type="button" name="add" class="add" value="{{add_btn_label}}">
</div>