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

« back to all changes in this revision

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

Modified the styling of the projects page, and added a non-functional
delete button next to each project.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<li xmlns='http://www.w3.org/1999/xhtml'
2
2
    xmlns:py='http://genshi.edgewall.org/'
3
3
    id='project_${project.id}'>
4
 
  <a href='#' class="delete-project"><img src='${delete-image}' /></a>
5
 
  <a href='${project_url}'><h4>${project.short_name} - ${project.name}</h4></a>
 
4
  <div class='project-title'>
 
5
    <a href='#' class="delete-project"><img
 
6
        src='/+media/ivle.webapp.core/images/interface/cross.png' /></a>
 
7
    <a href='${project_url}'><strong>${project.short_name} - ${project.name}</strong></a>
 
8
  </div><br />
6
9
  <pre class='project-synopsis'>${project.synopsis}</pre>
7
10
</li>