Move to subdirectory in prepartion for merge

This commit is contained in:
Calen Pennington
2012-03-19 11:10:44 -04:00
parent 0702a84587
commit 2f0b39189a
170 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<%inherit file="main.html" />
<%include file="navigation.html" args="active_page=''" />
<section class="main-content">
<div class="gradebook-wrapper">
<section class="gradebook-content">
<h1>Pending name changes</h1>
<table>
% for s in students:
<tr><td><a href=/profile/${s.uid}/>${s.oldname}</td><td>${s.newname}</td><td onclick="update({$s.uid});">[Change]</td></tr>
% endfor
</table>
</section>
</div>
</section>