~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/groups/template.html

  • Committer: Matt Giuca
  • Date: 2010-02-25 07:54:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1731.
  • Revision ID: matt.giuca@gmail.com-20100225075459-ofwtu37q7d8rbmc8
Fully link the Project Delete view, from all the places the Project Edit view is linked.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
        <tr py:for="project in projectset.projects">
26
26
          <td><a href="${req.publisher.generate(project)}">${project.name}</a></td>
27
27
          <td><a href='${req.publisher.generate(project, ProjectEdit)}'><img
28
 
            src='/+media/ivle.webapp.core/images/interface/pencil.png' alt="Edit"
29
 
            title="Edit project" /></a></td>
 
28
                src='/+media/ivle.webapp.core/images/interface/pencil.png'
 
29
                alt="Edit" title="Edit project" /></a>
 
30
              <a href='${req.publisher.generate(project, ProjectDelete)}'><img
 
31
                src='/+media/ivle.webapp.core/images/interface/delete.png'
 
32
                alt="Delete" title="Delete project" /></a>
 
33
          </td>
30
34
        </tr>
31
35
      </table>
32
36
      <p><a class="addaction" href="${req.publisher.generate(projectset, ProjectNew)}">Add a new project</a></p>