mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-19 07:52:16 +00:00
MsgView styled, display Name of Sender
This commit is contained in:
Regular → Executable
+21
-9
@@ -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:
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<?php echo $sender->vorname.' '.$sender->nachname; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="width: 80px;">
|
||||
<b>Subject:</b>
|
||||
</td>
|
||||
<td>
|
||||
|
||||
@@ -16,7 +28,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Message:
|
||||
<b>Message:</b>
|
||||
</td>
|
||||
<td>
|
||||
|
||||
@@ -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"); ?>
|
||||
|
||||
Reference in New Issue
Block a user