Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amir-qayyum-khan committed Jul 30, 2015
1 parent b02665d commit 68bb1b8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions edx_sga/templates/staff_graded_assignment/show.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<% } else { %>
<span id="upload_label">{% trans "Upload your assignment" %}</span>
<% } %>
<div class="upload" aria-describedby="upload_label" role="alert" aria-live="assertive">
<div class="upload" aria-describedby="upload_label" role="alert" aria-live="assertive" tabindex="1">
<input class="fileupload" type="file" name="assignment"/>
<button>Select a file</button>
</div>
Expand Down Expand Up @@ -101,7 +101,7 @@
<% } %>
</td>
<td>
<div class="upload" aria-live="polite">
<div class="upload" aria-live="assertive" role="alert" tabindex="1">
<input class="fileupload" type="file" name="annotated"/>
<button>Upload annotated file</button>
</div>
Expand Down Expand Up @@ -134,21 +134,21 @@
<header role="banner"><h2>{% trans "Staff Debug" %}</h2></header>
<br/>
<div class="staff_info" style="display: block; white-space: normal">
<span tabindex="0">is_released = {{ is_released }}</span> <br/>
<span tabindex="0">location = {{ location }}</span><br/>
<span tabindex="1">is_released = {{ is_released }}</span> <br/>
<span tabindex="1">location = {{ location }}</span><br/>
<br/>
<table summary="${_('Module Fields')}">
<tr><th tabindex="0">{% trans "Module Fields" %}</th></tr>
<tr><th tabindex="1">{% trans "Module Fields" %}</th></tr>
{% for name, field in fields %}
<tr>
<td tabindex="0">{{name}}</td>
<td tabindex="1">{{name}}</td>
<td>
<pre style="display:inline-block; margin: 0;" tabindex="0">{{field}}</pre>
<pre style="display:inline-block; margin: 0;" tabindex="1">{{field}}</pre>
</td>
</tr>
{% endfor %}
</table><br/>
<span tabindex="0">category = {{category}}</span>
<span tabindex="1">category = {{category}}</span>
</div>
</div>
</section>
Expand Down

0 comments on commit 68bb1b8

Please sign in to comment.