diff options
author | Thomas Lange <code@nerdmind.de> | 2017-09-15 16:29:54 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-09-15 16:29:54 +0200 |
commit | 54516e1178c34b0a68b96edab024a6b0184d36cb (patch) | |
tree | 0b9d3c2b0c93a99fedef1081733e6fb0fd5fd3d9 /template/admin/html/user | |
parent | 3bf57273ef02b1e892bf7231b58dcb7cfc45c1e6 (diff) | |
download | blog-54516e1178c34b0a68b96edab024a6b0184d36cb.tar.gz blog-54516e1178c34b0a68b96edab024a6b0184d36cb.tar.xz blog-54516e1178c34b0a68b96edab024a6b0184d36cb.zip |
The IDs of the items in the overview lists of the admin template are now no longer displayed within a <h2> element and have been moved to the underlying <div> element.
Diffstat (limited to 'template/admin/html/user')
-rw-r--r-- | template/admin/html/user/item.php | 3 |
1 files changed, 2 insertions, 1 deletions
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> |