diff --git a/public/include/pages/admin/user.inc.php b/public/include/pages/admin/user.inc.php
index 23d6cc89..dfc9de05 100644
--- a/public/include/pages/admin/user.inc.php
+++ b/public/include/pages/admin/user.inc.php
@@ -8,7 +8,7 @@ if (!$user->isAuthenticated() || !$user->isAdmin($_SESSION['USERDATA']['id'])) {
}
// Some defaults
-$iLimit = 30;
+$iLimit = 100;
$smarty->assign('LIMIT', $iLimit);
empty($_REQUEST['start']) ? $start = 0 : $start = $_REQUEST['start'];
$smarty->assign('ADMIN', array('' => '', '0' => 'No', '1' => 'Yes'));
diff --git a/public/templates/bootstrap/admin/user/default.tpl b/public/templates/bootstrap/admin/user/default.tpl
index 92e6ca84..404cc7c1 100644
--- a/public/templates/bootstrap/admin/user/default.tpl
+++ b/public/templates/bootstrap/admin/user/default.tpl
@@ -81,9 +81,9 @@
User Information
-
+
-
+
| ID |
diff --git a/public/templates/bootstrap/statistics/round/round_transactions.tpl b/public/templates/bootstrap/statistics/round/round_transactions.tpl
index 0660ae40..5ea4de28 100644
--- a/public/templates/bootstrap/statistics/round/round_transactions.tpl
+++ b/public/templates/bootstrap/statistics/round/round_transactions.tpl
@@ -7,23 +7,23 @@
-
- | User Name |
- Type |
- Round Shares |
- Round % |
- Amount |
-
-
-
+
+ | User Name |
+ Type |
+ Round Shares |
+ Round % |
+ Amount |
+
+
+
{section txs $ROUNDTRANSACTIONS}
-
- | {if $ROUNDTRANSACTIONS[txs].is_anonymous|default:"0" == 1 && $GLOBAL.userdata.is_admin|default:"0" == 0}anonymous{else}{$ROUNDTRANSACTIONS[txs].username|default:"unknown"|escape}{/if} |
- {$ROUNDTRANSACTIONS[txs].type|default:""} |
- {$ROUNDSHARES[$ROUNDTRANSACTIONS[txs].uid].valid|number_format} |
- {(( 100 / $BLOCKDETAILS.shares) * $ROUNDSHARES[$ROUNDTRANSACTIONS[txs].uid].valid)|default:"0"|number_format:"2"} |
- {$ROUNDTRANSACTIONS[txs].amount|default:"0"|number_format:"8"} |
-
+
+ | {if $ROUNDTRANSACTIONS[txs].is_anonymous|default:"0" == 1 && $GLOBAL.userdata.is_admin|default:"0" == 0}anonymous{else}{$ROUNDTRANSACTIONS[txs].username|default:"unknown"|escape}{/if} |
+ {$ROUNDTRANSACTIONS[txs].type|default:""} |
+ {$ROUNDSHARES[$ROUNDTRANSACTIONS[txs].uid].valid|number_format} |
+ {(( 100 / $BLOCKDETAILS.shares) * $ROUNDSHARES[$ROUNDTRANSACTIONS[txs].uid].valid)|default:"0"|number_format:"2"} |
+ {$ROUNDTRANSACTIONS[txs].amount|default:"0"|number_format:"8"} |
+
{/section}