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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/templates/project_fragment.html

  • Committer: Matt Giuca
  • Date: 2010-02-25 08:26:04 UTC
  • mfrom: (1710.1.25 new-project-ui)
  • Revision ID: matt.giuca@gmail.com-20100225082604-0fku57vycn5cgonf
Replaced AJAX UI for project creation with a standard one. Can now edit project sets, and edit/delete projects. Also many more links to such things, due to the fact that they have their own URLs now. Fixes Launchpad bug #493942.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
    id='project_${project.id}'>
4
4
  <div class='project-title'>
5
5
    <a href="${req.publisher.generate(project)}"><strong>${project.name}</strong></a>
6
 
    <!--<a href='#'><img
7
 
    src='/+media/ivle.webapp.core/images/interface/cross.png' alt="Delete"
8
 
    title="Delete project" /></a> -->
 
6
    <a href='${req.publisher.generate(project, ProjectEdit)}'><img
 
7
      src='/+media/ivle.webapp.core/images/interface/pencil.png' alt="Edit"
 
8
      title="Edit project" /></a>
 
9
    <a href='${req.publisher.generate(project, ProjectDelete)}'><img
 
10
      src='/+media/ivle.webapp.core/images/interface/delete.png' alt="Delete"
 
11
      title="Delete project" /></a>
9
12
  </div>
10
13
  <pre class='project-synopsis'>${project.synopsis}</pre>
11
14
</li>