diff options
Diffstat (limited to 'view/theme/diabook-red')
-rw-r--r-- | view/theme/diabook-red/admin_users.tpl | 88 | ||||
-rwxr-xr-x | view/theme/diabook-red/icons/block.png | bin | 0 -> 335 bytes | |||
-rw-r--r-- | view/theme/diabook-red/nets.tpl | 2 | ||||
-rw-r--r-- | view/theme/diabook-red/style-network.css | 4 | ||||
-rw-r--r-- | view/theme/diabook-red/style.css | 8 | ||||
-rw-r--r-- | view/theme/diabook-red/theme.php | 4 |
6 files changed, 101 insertions, 5 deletions
diff --git a/view/theme/diabook-red/admin_users.tpl b/view/theme/diabook-red/admin_users.tpl new file mode 100644 index 000000000..40f94f5fe --- /dev/null +++ b/view/theme/diabook-red/admin_users.tpl @@ -0,0 +1,88 @@ +<script> + function confirm_delete(uname){ + return confirm( "$confirm_delete".format(uname)); + } + function confirm_delete_multi(){ + return confirm("$confirm_delete_multi"); + } + function selectall(cls){ + $("."+cls).attr('checked','checked'); + return false; + } +</script> +<div id='adminpage'> + <h1>$title - $page</h1> + + <form action="$baseurl/admin/users" method="post"> + + <h3>$h_pending</h3> + {{ if $pending }} + <table id='pending'> + <thead> + <tr> + {{ for $th_pending as $th }}<th>$th</th>{{ endfor }} + <th></th> + <th></th> + </tr> + </thead> + <tbody> + {{ for $pending as $u }} + <tr> + <td class="created">$u.created</td> + <td class="name">$u.name</td> + <td class="email">$u.email</td> + <td class="checkbox"><input type="checkbox" class="pending_ckbx" id="id_pending_$u.hash" name="pending[]" value="$u.hash" /></td> + <td class="tools"> + <a href="$baseurl/regmod/allow/$u.hash" title='$approve'><span class='icon like'></span></a> + <a href="$baseurl/regmod/deny/$u.hash" title='$deny'><span class='icon dislike'></span></a> + </td> + </tr> + {{ endfor }} + </tbody> + </table> + <div class='selectall'><a href='#' onclick="return selectall('pending_ckbx');">$select_all</a></div> + <div class="submit"><input type="submit" name="page_users_deny" value="$deny"/> <input type="submit" name="page_users_approve" value="$approve" /></div> + {{ else }} + <p>$no_pending</p> + {{ endif }} + + + + + <h3>$h_users</h3> + {{ if $users }} + <table id='users'> + <thead> + <tr> + <th></th> + {{ for $th_users as $th }}<th>$th</th>{{ endfor }} + <th></th> + <th></th> + </tr> + </thead> + <tbody> + {{ for $users as $u }} + <tr> + <td><img src="$u.micro" alt="$u.nickname" title="$u.nickname"></td> + <td class='name'><a href="$u.url" title="$u.nickname" >$u.name</a></td> + <td class='email'>$u.email</td> + <td class='register_date'>$u.register_date</td> + <td class='login_date'>$u.login_date</td> + <td class='lastitem_date'>$u.lastitem_date</td> + <td class='login_date'>$u.page-flags</td> + <td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td> + <td class="tools" style="width:60px;"> + <a href="$baseurl/admin/users/block/$u.uid" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a> + <a href="$baseurl/admin/users/delete/$u.uid" title='$delete' onclick="return confirm_delete('$u.name')"><span class='icon ad_drop'></span></a> + </td> + </tr> + {{ endfor }} + </tbody> + </table> + <div class='selectall'><a href='#' onclick="return selectall('users_ckbx');">$select_all</a></div> + <div class="submit"><input type="submit" name="page_users_block" value="$block/$unblock" /> <input type="submit" name="page_users_delete" value="$delete" onclick="return confirm_delete_multi()" /></div> + {{ else }} + NO USERS?!? + {{ endif }} + </form> +</div> diff --git a/view/theme/diabook-red/icons/block.png b/view/theme/diabook-red/icons/block.png Binary files differnew file mode 100755 index 000000000..a0b1dffe9 --- /dev/null +++ b/view/theme/diabook-red/icons/block.png diff --git a/view/theme/diabook-red/nets.tpl b/view/theme/diabook-red/nets.tpl index 68a8e88e9..be25ddee1 100644 --- a/view/theme/diabook-red/nets.tpl +++ b/view/theme/diabook-red/nets.tpl @@ -1,5 +1,5 @@ <div id="profile_side"> - <h3>$title</h3> + <h3 style="margin-left: 2px;">$title</h3> <div id="nets-desc">$desc</div> <ul class="menu-profile-side"> diff --git a/view/theme/diabook-red/style-network.css b/view/theme/diabook-red/style-network.css index 03357f766..115868711 100644 --- a/view/theme/diabook-red/style-network.css +++ b/view/theme/diabook-red/style-network.css @@ -1064,6 +1064,10 @@ aside #search-text { border-top-right-radius: 15px; border-bottom-right-radius: 15px; border-bottom-left-radius: 15px; +-moz-border-bottom-colors: #dbdbdb; + -moz-border-top-colors: #999; + -moz-border-left-colors: #999; + -moz-border-right-colors: #dbdbdb; } aside #side-follow-url { width: 150px; diff --git a/view/theme/diabook-red/style.css b/view/theme/diabook-red/style.css index 6ca2370de..122096213 100644 --- a/view/theme/diabook-red/style.css +++ b/view/theme/diabook-red/style.css @@ -168,13 +168,17 @@ } .edit {background-image: url("../../../view/theme/diabook-red/icons/pencil2.png"); display: block; width: 28px; height: 28px; background-repeat: no-repeat;} - +.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png"); + display: block; width: 16px; height: 16px; background-repeat: no-repeat;} +.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png"); + display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;} +.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png"); + display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;} .article { background-position: -50px 0px;} /*.audio { background-position: -70px 0px;}*/ -.block { background-position: -90px 0px;} /*.drop { background-position: -110px 0px;}*/ /*.drophide { background-position: -130px 0px;}*/ /*.edit { background-position: -150px 0px;}*/ diff --git a/view/theme/diabook-red/theme.php b/view/theme/diabook-red/theme.php index 479a0130a..fb2ad21fd 100644 --- a/view/theme/diabook-red/theme.php +++ b/view/theme/diabook-red/theme.php @@ -3,13 +3,13 @@ /* * Name: Diabook-red * Description: Diabook-red: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu - * Version: (Version: 1.018) + * Version: (Version: 1.019) * Author: */ //print diabook-version for debugging -$diabook_version = "Diabook-red (Version: 1.018)"; +$diabook_version = "Diabook-red (Version: 1.019)"; $a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version); //change css on network and profilepages |