diff options
Diffstat (limited to 'template/admin/html')
-rw-r--r-- | template/admin/html/page/item.php | 3 | ||||
-rw-r--r-- | template/admin/html/post/item.php | 3 | ||||
-rw-r--r-- | template/admin/html/user/item.php | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/template/admin/html/page/item.php b/template/admin/html/page/item.php index 4fa1375..fa251cb 100644 --- a/template/admin/html/page/item.php +++ b/template/admin/html/page/item.php @@ -1,7 +1,8 @@ <article class="item"> <header> - <h2><i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?><span>#<?=$PAGE['ATTR']['ID']?></span></h2> + <h2><i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?></h2> <div> + <span class="brackets item-id">#<?=$PAGE['ATTR']['ID']?></span> <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> <time class="brackets" datetime="<?=$PAGE['ATTR']['TIME_INSERT']?>"><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> </div> diff --git a/template/admin/html/post/item.php b/template/admin/html/post/item.php index 03657b5..83a1d35 100644 --- a/template/admin/html/post/item.php +++ b/template/admin/html/post/item.php @@ -1,7 +1,8 @@ <article class="item"> <header> - <h2><i class="fa fa-newspaper-o"></i><?=escapeHTML($POST['ATTR']['NAME'])?><span>#<?=$POST['ATTR']['ID']?></span></h2> + <h2><i class="fa fa-newspaper-o"></i><?=escapeHTML($POST['ATTR']['NAME'])?></h2> <div> + <span class="brackets item-id">#<?=$POST['ATTR']['ID']?></span> <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> <time class="brackets" datetime="<?=$POST['ATTR']['TIME_INSERT']?>"><?=parseDatetime($POST['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> </div> diff --git a/template/admin/html/user/item.php b/template/admin/html/user/item.php index f341359..62e2c60 100644 --- a/template/admin/html/user/item.php +++ b/template/admin/html/user/item.php @@ -1,7 +1,8 @@ <article class="item"> <header> - <h2><i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?><span>#<?=$USER['ATTR']['ID']?></span></h2> + <h2><i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?></h2> <div> + <span class="brackets item-id">#<?=$USER['ATTR']['ID']?></span> <time class="brackets" datetime="<?=$USER['ATTR']['TIME_INSERT']?>"><?=parseDatetime($USER['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> </div> </header> |