mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 00:24:35 +00:00
Personendetails beim Anlegen von Projektbetreuern anzeigen
This commit is contained in:
@@ -404,7 +404,18 @@ if($where!='')
|
||||
|
||||
if($result = $db->db_query($qry))
|
||||
{
|
||||
echo '<table><tr><th></th><th>Nachname</th><th>Vorname</th><th>GebDatum</th><th>SVNR</th><th>Geschlecht</th><th>Adresse</th><th>Status</th></tr>';
|
||||
echo '<table>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Nachname</th>
|
||||
<th>Vorname</th>
|
||||
<th>GebDatum</th>
|
||||
<th>SVNR</th>
|
||||
<th>Geschlecht</th>
|
||||
<th>Adresse</th>
|
||||
<th>Status</th>
|
||||
<th>Details</th>
|
||||
</tr>';
|
||||
while($row = $db->db_fetch_object($result))
|
||||
{
|
||||
$status = '';
|
||||
@@ -428,6 +439,7 @@ if($where!='')
|
||||
while($row_adr=$db->db_fetch_object($result_adr))
|
||||
echo "$row_adr->plz $row_adr->ort, $row_adr->strasse<br>";
|
||||
echo "<td>$status</td>";
|
||||
echo '<td><a href="personendetails.php?id='.$row->person_id.'" target="_blank">Details</a></td>';
|
||||
echo "</td></tr>";
|
||||
}
|
||||
echo '<tr><td><input type="radio" name="person_id" value="0" checked onclick="disablefields(this)"></td><td>Neue Person anlegen</td></tr>';
|
||||
|
||||
Reference in New Issue
Block a user