20
<py:if test="defined('subjects')">
22
<table class="pretty_table">
23
<thead><tr><th>Subject</th><th>Code</th><th>Actions</th></tr></thead>
25
<tr py:for="subject in subjects">
26
<td><a href="${req.publisher.generate(subject)}">${subject.name}</a></td>
27
<td>${subject.code}</td>
29
<a href="${req.publisher.generate(subject, SubjectEdit)}" title="Edit"><img src="${mediapath + 'interface/pencil.png'}" alt="Edit" /></a>
35
<a class="addaction" href="/subjects/+new">Create new subject</a>