Implement project deletion + some clean-up

This commit is contained in:
Eike Foken
2011-08-08 01:16:19 +02:00
parent e1f1ef140d
commit 78d88d27e1
3 changed files with 32 additions and 12 deletions

View File

@@ -8,7 +8,7 @@
<div class="box">
<h3>Versuche</h3>
<table>
<table class="tableList">
<thead>
<tr>
<th scope="col">Versuch</th>
@@ -50,7 +50,7 @@
</div>
<div class="box">
<table>
<table class="tableList">
<thead>
<tr>
<th scope="col">Versuch</th>

View File

@@ -25,7 +25,7 @@
<td><a href="<?=site_url('projects/detail/' . $project['id'])?>"><abbr title="<?=$project['description']?>"><?=$project['name']?></abbr></a></td>
<td><?=$project['firstname'] . " " . $project['lastname']?></td>
<td><span class="active">Erfolgreich abgeschlossen</span></td>
<td><a href="#">Ergebnisse anzeigen</a> | <a href="#">Entfernen</a></td>
<td><a href="#">Ergebnisse anzeigen</a> | <?=anchor('projects/delete/' . $project['id'], "Entfernen");?></td>
</tr>
<?
endforeach;