diff options
Diffstat (limited to 'theme/admin/html')
-rw-r--r-- | theme/admin/html/category/item.php | 6 | ||||
-rw-r--r-- | theme/admin/html/page/item.php | 6 | ||||
-rw-r--r-- | theme/admin/html/post/item.php | 6 | ||||
-rw-r--r-- | theme/admin/html/user/item.php | 6 |
4 files changed, 16 insertions, 8 deletions
diff --git a/theme/admin/html/category/item.php b/theme/admin/html/category/item.php index 05212e7..f8e7223 100644 --- a/theme/admin/html/category/item.php +++ b/theme/admin/html/category/item.php @@ -1,8 +1,10 @@ <article class="item"> <header> - <h2><i class="fa fa-tag"></i><?=escapeHTML($CATEGORY['ATTR']['NAME'])?></h2> + <h2> + <i class="fa fa-tag"></i><?=escapeHTML($CATEGORY['ATTR']['NAME'])?> + <span class="item-id">#<?=$CATEGORY['ATTR']['ID']?></span> + </h2> <div> - <span class="brackets item-id">#<?=$CATEGORY['ATTR']['ID']?></span> <time class="brackets" datetime="<?=$CATEGORY['ATTR']['TIME_INSERT']?>"><?=parseDatetime($CATEGORY['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> <span class="brackets"><?=$Language->text('posts')?>: <?=$COUNT['POST']?></span> <span class="brackets"><?=$Language->text('categories')?>: <?=$COUNT['CHILDREN']?></span> diff --git a/theme/admin/html/page/item.php b/theme/admin/html/page/item.php index c61984c..267416a 100644 --- a/theme/admin/html/page/item.php +++ b/theme/admin/html/page/item.php @@ -1,8 +1,10 @@ <article class="item"> <header> - <h2><i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?></h2> + <h2> + <i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?> + <span class="item-id">#<?=$PAGE['ATTR']['ID']?></span> + </h2> <div> - <span class="brackets item-id">#<?=$PAGE['ATTR']['ID']?></span> <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>" title="<?=$Language->text('update_user')?>"><?=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/theme/admin/html/post/item.php b/theme/admin/html/post/item.php index 41991d5..330e682 100644 --- a/theme/admin/html/post/item.php +++ b/theme/admin/html/post/item.php @@ -1,8 +1,10 @@ <article class="item"> <header> - <h2><i class="fa fa-newspaper-o"></i><?=escapeHTML($POST['ATTR']['NAME'])?></h2> + <h2> + <i class="fa fa-newspaper-o"></i><?=escapeHTML($POST['ATTR']['NAME'])?> + <span class="item-id">#<?=$POST['ATTR']['ID']?></span> + </h2> <div> - <span class="brackets item-id">#<?=$POST['ATTR']['ID']?></span> <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>" title="<?=$Language->text('update_user')?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> <?php if($CATEGORY): ?> <a class="brackets" href="<?=Application::getAdminURL("category/update.php?id={$CATEGORY['ATTR']['ID']}")?>" title="<?=$Language->text('update_category')?>"><?=escapeHTML($CATEGORY['ATTR']['NAME'])?></a> diff --git a/theme/admin/html/user/item.php b/theme/admin/html/user/item.php index ae16637..80edd3b 100644 --- a/theme/admin/html/user/item.php +++ b/theme/admin/html/user/item.php @@ -1,8 +1,10 @@ <article class="item"> <header> - <h2><i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?></h2> + <h2> + <i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?> + <span class="item-id">#<?=$USER['ATTR']['ID']?></span> + </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> |