MsgView styled, display Name of Sender

This commit is contained in:
Gerald Raab
2017-03-30 13:56:51 +02:00
parent f25cfc3fb1
commit 3ecb3907cf
3 changed files with 40 additions and 23 deletions
+21 -9
View File
@@ -1,11 +1,23 @@
<?php $this->load->view("templates/header", array("title" => "Message viewer")); ?>
<body>
<table widht="70%">
<tr>
<center>
<br><br>
<table width="70%;" style="border: solid 1px gray; background-color:white; padding:5px;">
<tr style=''>
<td style="width: 80px;">
<b>From:</b>
</td>
<td>
Subject:
&nbsp;
</td>
<td>
<?php echo $sender->vorname.' '.$sender->nachname; ?>
</td>
</tr>
<tr>
<td style="width: 80px;">
<b>Subject:</b>
</td>
<td>
&nbsp;
@@ -16,7 +28,7 @@
</tr>
<tr>
<td>
Message:
<b>Message:</b>
</td>
<td>
&nbsp;
@@ -26,13 +38,13 @@
</td>
</tr>
<tr>
<td></td>
<td colspan="2" align="center">
<td colspan="3" align="center" style="background-color:#dddddd; padding:5px;">
<a href="<?php echo $href; ?>">Reply</a>
</td>
</tr>
</table>
</center>
</body>
<?php $this->load->view("templates/footer"); ?>
<?php $this->load->view("templates/footer"); ?>