Skip to content

Commit

Permalink
mantis #0018940: Reformat campaign table as a single row with styling…
Browse files Browse the repository at this point in the history
… on 'View opens' page (#247)
  • Loading branch information
mariez authored and michield committed Feb 20, 2018
1 parent 4431f31 commit 9d30412
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions public_html/lists/admin/mviews.php
Expand Up @@ -82,11 +82,12 @@
WHERE
id = $id $subselect"
);
echo '<table class="mviewsDetails">
<tr><td>' .s('Subject').'<td><td>'.$messagedata['subject'].'</td></tr>
<tr><td>' .s('Entered').'<td><td>'.$messagedata['entered'].'</td></tr>
<tr><td>' .s('Sent').'<td><td>'.$messagedata['sent'].'</td></tr>
</table><hr/>';
echo '<table class="mviewsDetails table table-bordered"><tr><td>' .
'<div class="twelve columns col-sm-12 col-lg-6"><b>'.s('Subject').': </b><i>'.$messagedata['subject'].'</i></div>'.
'<div class="clearfix hidden-lg"></div>'.
'<div class="six columns col-sm-8 col-lg-3"><b>'.s('Entered').': </b>'.$messagedata['entered'].'</div>'.
'<div class="six columns col-sm-4 col-lg-3"><b>'.s('Sent').': </b>'.$messagedata['sent'].'</div>'.
'</td></tr></table>';

echo '<p class="pull-right">'.PageLinkButton('statsoverview&id='.$id,
s('Campaign statistics')).'</p><div class="clearfix"></div>';
Expand Down

0 comments on commit 9d30412

Please sign in to comment.