Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

Commit

Permalink
Bug #368, Enhance admin/moderate view; small CSS fix [iet:10273700]
Browse files Browse the repository at this point in the history
* [iet:10277234]
  • Loading branch information
nfreear committed Dec 14, 2017
1 parent 23bac8d commit b8922f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions _design/styles_1_1.css
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,11 @@ body.aurora #site-header {
margin:0 auto;
}

#site-header-content a img {
display: inline-block;
margin-left: 2px;
}

ul li a.survey {
padding-left: 24px;
background:url(li-email.gif) 0 .3em no-repeat;
Expand Down
3 changes: 3 additions & 0 deletions system/application/views/admin/moderate.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<?php if ($clouds): ?>
<h2>Clouds</h2>
<?php foreach ($clouds as $cloud): ?>
Cloud ID: <?= $cloud->cloud_id ?>
<p><?= anchor('cloud/view/'.$cloud->cloud_id, $cloud->title) ?></p>
<p>Cloud created by <a href="<?= base_url() ?>user/view/<?= $cloud->user_id ?>"><?= $cloud->fullname ?></a></p>
<p><?= $cloud->summary ?></p>
Expand All @@ -26,6 +27,7 @@

<h2>Comments</h2>
<?php foreach ($comments as $comment): ?>
Cloud ID: <?= $comment->cloud_id ?> / comment ID: <?= $comment->comment_id ?>
<p>Comment by <a href="<?= base_url() ?>user/view/<?= $comment->user_id ?>"><?= $comment->fullname ?></a></p>
<?= $comment->body ?>
<p class="login">
Expand Down Expand Up @@ -118,6 +120,7 @@
<?php if ($contents): ?>
<h2>Content</h2>
<?php foreach ($contents as $content): ?>
Cloud ID: <?= $content->cloud_id ?> / content ID: <?= $content->content_id ?>
<p><?= $content->body ?> by <?= anchor('user/view/'.$content->user_id, $content->fullname) ?></p>
<p class="login">
<?=anchor("user/ban/$content->user_id", t('Ban User'), array('title'=>t('Ban User'), 'class'=>'button')) ?>
Expand Down

0 comments on commit b8922f0

Please sign in to comment.