diff --git a/public/include/pages/account/edit.inc.php b/public/include/pages/account/edit.inc.php
index 0c50dafd..951face4 100644
--- a/public/include/pages/account/edit.inc.php
+++ b/public/include/pages/account/edit.inc.php
@@ -12,52 +12,54 @@ $updating = (@$_POST['do']) ? 1 : 0;
if ($user->isAuthenticated()) {
if ($config['twofactor']['enabled']) {
- $popupmsg = 'E-mail confirmations are required for ';
- $popuptypes = array();
- if ($config['twofactor']['options']['details'] && $oldtoken_ea !== "") {
- $popuptypes[] = 'editing your details';
- $ea_editable = $user->token->isTokenValid($_SESSION['USERDATA']['id'], $oldtoken_ea, 5);
- $ea_sent = $user->token->doesTokenExist('account_edit', $_SESSION['USERDATA']['id']);
- }
- if ($config['twofactor']['options']['changepw'] && $oldtoken_cp !== "") {
- $popuptypes[] = 'changing your password';
- $cp_editable = $user->token->isTokenValid($_SESSION['USERDATA']['id'], $oldtoken_cp, 6);
- $cp_sent = $user->token->doesTokenExist('change_pw', $_SESSION['USERDATA']['id']);
- }
- if ($config['twofactor']['options']['withdraw'] && $oldtoken_wf !== "") {
- $popuptypes[] = 'withdrawals';
- $wf_editable = $user->token->isTokenValid($_SESSION['USERDATA']['id'], $oldtoken_wf, 7);
- $wf_sent = $user->token->doesTokenExist('withdraw_funds', $_SESSION['USERDATA']['id']);
- }
-
- // get the status of a token if set
- $message_tokensent_invalid = 'A token was sent to your e-mail that will allow you to ';
- $message_tokensent_valid = 'You can currently ';
- $messages_tokensent_status = array(
- 'ea' => 'edit your account details',
- 'wf' => 'withdraw funds',
- 'cp' => 'change your password'
- );
- // build the message we're going to show them for their token(s)
- $eaprep_sent = ($ea_sent) ? $message_tokensent_valid.$messages_tokensent_status['ea'] : "";
- $eaprep_edit = ($ea_editable) ? $message_tokensent_invalid.$messages_tokensent_status['ea'] : "";
- $wfprep_sent = ($wf_sent) ? $message_tokensent_valid.$messages_tokensent_status['wf'] : "";
- $wfprep_edit = ($wf_editable) ? $message_tokensent_invalid.$messages_tokensent_status['wf'] : "";
- $cpprep_sent = ($cp_sent) ? $message_tokensent_valid.$messages_tokensent_status['cp'] : "";
- $cpprep_edit = ($cp_editable) ? $message_tokensent_invalid.$messages_tokensent_status['cp'] : "";
- $ptc = 0;
- $ptcn = count($popuptypes);
- foreach ($popuptypes as $pt) {
- if ($ptcn == 1) { $popupmsg.= $popuptypes[$ptc]; continue; }
- if ($ptc !== ($ptcn-1)) {
- $popupmsg.= $popuptypes[$ptc].', ';
- } else {
- $popupmsg.= 'and '.$popuptypes[$ptc];
+ if ($config['twofactor']['options']['details'] OR $config['twofactor']['options']['changepw'] OR $config['twofactor']['options']['withdraw']) {
+ $popupmsg = 'E-mail confirmations are required for ';
+ $popuptypes = array();
+ if ($config['twofactor']['options']['details'] && $oldtoken_ea !== "") {
+ $popuptypes[] = 'editing your details';
+ $ea_editable = $user->token->isTokenValid($_SESSION['USERDATA']['id'], $oldtoken_ea, 5);
+ $ea_sent = $user->token->doesTokenExist('account_edit', $_SESSION['USERDATA']['id']);
}
- $ptc++;
+ if ($config['twofactor']['options']['changepw'] && $oldtoken_cp !== "") {
+ $popuptypes[] = 'changing your password';
+ $cp_editable = $user->token->isTokenValid($_SESSION['USERDATA']['id'], $oldtoken_cp, 6);
+ $cp_sent = $user->token->doesTokenExist('change_pw', $_SESSION['USERDATA']['id']);
+ }
+ if ($config['twofactor']['options']['withdraw'] && $oldtoken_wf !== "") {
+ $popuptypes[] = 'withdrawals';
+ $wf_editable = $user->token->isTokenValid($_SESSION['USERDATA']['id'], $oldtoken_wf, 7);
+ $wf_sent = $user->token->doesTokenExist('withdraw_funds', $_SESSION['USERDATA']['id']);
+ }
+
+ // get the status of a token if set
+ $message_tokensent_invalid = 'A token was sent to your e-mail that will allow you to ';
+ $message_tokensent_valid = 'You can currently ';
+ $messages_tokensent_status = array(
+ 'ea' => 'edit your account details',
+ 'wf' => 'withdraw funds',
+ 'cp' => 'change your password'
+ );
+ // build the message we're going to show them for their token(s)
+ $eaprep_sent = ($ea_sent) ? $message_tokensent_valid.$messages_tokensent_status['ea'] : "";
+ $eaprep_edit = ($ea_editable) ? $message_tokensent_invalid.$messages_tokensent_status['ea'] : "";
+ $wfprep_sent = ($wf_sent) ? $message_tokensent_valid.$messages_tokensent_status['wf'] : "";
+ $wfprep_edit = ($wf_editable) ? $message_tokensent_invalid.$messages_tokensent_status['wf'] : "";
+ $cpprep_sent = ($cp_sent) ? $message_tokensent_valid.$messages_tokensent_status['cp'] : "";
+ $cpprep_edit = ($cp_editable) ? $message_tokensent_invalid.$messages_tokensent_status['cp'] : "";
+ $ptc = 0;
+ $ptcn = count($popuptypes);
+ foreach ($popuptypes as $pt) {
+ if ($ptcn == 1) { $popupmsg.= $popuptypes[$ptc]; continue; }
+ if ($ptc !== ($ptcn-1)) {
+ $popupmsg.= $popuptypes[$ptc].', ';
+ } else {
+ $popupmsg.= 'and '.$popuptypes[$ptc];
+ }
+ $ptc++;
+ }
+ // display global notice about tokens being in use and for which bits they're active
+ $_SESSION['POPUP'][] = array('CONTENT' => $popupmsg, 'TYPE' => 'alert alert-warning');
}
- // display global notice about tokens being in use and for which bits they're active
- $_SESSION['POPUP'][] = array('CONTENT' => $popupmsg, 'TYPE' => 'alert alert-warning');
}
if (isset($_POST['do']) && $_POST['do'] == 'genPin') {
@@ -174,12 +176,12 @@ if ($config['twofactor']['enabled'] && $user->isAuthenticated()) {
}
// display token info per each - only when sent and editable or just sent, not by default
- (!empty($eaprep_sent) && !empty($eaprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $eaprep_sent, 'TYPE' => 'success'):"";
- (!empty($eaprep_sent) && empty($eaprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $message_tokensent_invalid.$messages_tokensent_status['ea'], 'TYPE' => 'success'):"";
- (!empty($wfprep_sent) && !empty($wfprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $wfprep_sent, 'TYPE' => 'success'):"";
- (!empty($wfprep_sent) && empty($wfprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $message_tokensent_invalid.$messages_tokensent_status['wf'], 'TYPE' => 'success'):"";
- (!empty($cpprep_sent) && !empty($cpprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $cpprep_sent, 'TYPE' => 'success'):"";
- (!empty($cpprep_sent) && empty($cpprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $message_tokensent_invalid.$messages_tokensent_status['cp'], 'TYPE' => 'success'):"";
+ (!empty($eaprep_sent) && !empty($eaprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $eaprep_sent, 'TYPE' => 'alert alert-success'):"";
+ (!empty($eaprep_sent) && empty($eaprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $message_tokensent_invalid.$messages_tokensent_status['ea'], 'TYPE' => 'alert alert-success'):"";
+ (!empty($wfprep_sent) && !empty($wfprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $wfprep_sent, 'TYPE' => 'alert alert-success'):"";
+ (!empty($wfprep_sent) && empty($wfprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $message_tokensent_invalid.$messages_tokensent_status['wf'], 'TYPE' => 'alert alert-success'):"";
+ (!empty($cpprep_sent) && !empty($cpprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $cpprep_sent, 'TYPE' => 'alert alert-success'):"";
+ (!empty($cpprep_sent) && empty($cpprep_edit)) ? $_SESSION['POPUP'][] = array('CONTENT' => $message_tokensent_invalid.$messages_tokensent_status['cp'], 'TYPE' => 'alert alert-success'):"";
// two-factor stuff
$smarty->assign("CHANGEPASSUNLOCKED", $cp_editable);
$smarty->assign("WITHDRAWUNLOCKED", $wf_editable);
diff --git a/public/site_assets/bootstrap/css/design/dark.css b/public/site_assets/bootstrap/css/design/dark.css
index e7202765..82d2a5c1 100644
--- a/public/site_assets/bootstrap/css/design/dark.css
+++ b/public/site_assets/bootstrap/css/design/dark.css
@@ -134,3 +134,7 @@ a:focus {
.dropdown-menu {
background-color: #D3D3D3;
}
+
+.confirmations {
+ color: #F3FF12;
+}
diff --git a/public/site_assets/bootstrap/css/mpos.css b/public/site_assets/bootstrap/css/mpos.css
index 6bec5713..758f2b4e 100644
--- a/public/site_assets/bootstrap/css/mpos.css
+++ b/public/site_assets/bootstrap/css/mpos.css
@@ -65,37 +65,37 @@ input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
- background-color: #ffffff;
- padding: 4px 4px 4px 4px;
- font-size: 11px;
- color: #555555;
- border: 1px solid #ccc;
- height: 25px;
- line-height: 25px;
+ background-color: #ffffff;
+ padding: 4px 4px 4px 4px;
+ font-size: 11px;
+ color: #555555;
+ border: 1px solid #ccc;
+ height: 25px;
+ line-height: 25px;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
- height: 25px;
- font-size: 12px;
+ height: 25px;
+ font-size: 12px;
}
.form-control {
- font-size: 12px;
+ font-size: 12px;
}
.input-group .input-group-addon {
- line-height: 1!important;
+ line-height: 1!important;
}
.glyphicon{
- line-height: 1em;
+ line-height: 1em;
}
.select-mini, .input-group {
- font-size: 11px;
- height: 25px;
+ font-size: 11px;
+ height: 25px;
}
/* Navigation */
@@ -105,145 +105,154 @@ input[type="color"],
/* Top Right Navigation Dropdown Styles */
.navbar-top-links li {
- display: inline-block;
+ display: inline-block;
}
.navbar-top-links li:last-child {
- margin-right: 15px;
+ margin-right: 15px;
}
.navbar-top-links li a {
- padding: 15px;
- min-height: 50px;
+ padding: 15px;
+ min-height: 50px;
}
.dropdown-user {
- min-width:100px;
+ min-width:100px;
}
.navbar-top-links .dropdown-menu li {
- display: block;
+ display: block;
}
.navbar-top-links .dropdown-menu li:last-child {
- margin-right: 0;
+ margin-right: 0;
}
.navbar-top-links .dropdown-menu li a {
- padding: 3px 20px;
- min-height: 0;
+ padding: 3px 20px;
+ min-height: 0;
}
.navbar-top-links .dropdown-menu li a div {
- white-space: normal;
+ white-space: normal;
}
.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
- width: 310px;
- min-width: 0;
+ width: 310px;
+ min-width: 0;
}
.navbar-top-links .dropdown-messages {
- margin-left: 5px;
+ margin-left: 5px;
}
.navbar-top-links .dropdown-tasks {
- margin-left: -59px;
+ margin-left: -59px;
}
.navbar-top-links .dropdown-alerts {
- /*#margin-left: -123px; */
+ /*#margin-left: -123px; */
}
.navbar-top-links .dropdown-user {
- right: 0;
- left: auto;
+ right: 0;
+ left: auto;
}
/* Sidebar Menu Styles */
- .sidebar-search {
- padding: 15px;
+.sidebar-search {
+ padding: 15px;
}
.arrow {
- float: right;
+ float: right;
}
.fa.arrow:before {
- content: "\f104";
+ content: "\f104";
}
.active > a > .fa.arrow:before {
- content: "\f107";
+ content: "\f107";
}
.nav-second-level li,
.nav-third-level li {
- border-bottom: none !important;
+ border-bottom: none !important;
}
.nav-second-level li a {
- padding-left: 37px;
+ padding-left: 37px;
}
.nav-third-level li a {
- padding-left: 52px;
+ padding-left: 52px;
}
@media(min-width:768px) {
- .navbar-static-side {
- z-index: 1;
- position: absolute;
- width: 250px;
- }
+ .navbar-static-side {
+ z-index: 1;
+ position: absolute;
+ width: 250px;
+ }
- .navbar-top-links .dropdown-messages,
- .navbar-top-links .dropdown-tasks,
- .navbar-top-links .dropdown-alerts {
- margin-left: auto;
- }
+ .navbar-top-links .dropdown-messages,
+ .navbar-top-links .dropdown-tasks,
+ .navbar-top-links .dropdown-alerts {
+ margin-left: auto;
+ }
+ .col-md-spark, .col-md-spark-2 {
+ float: left;
+ }
+ .col-md-spark {
+ width:16.65%
+ }
+ .col-md-spark-2 {
+ width:20%
+ }
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a,
.navbar-default .navbar-nav .open .dropdown-menu {
- font-size: 12px;
+ font-size: 12px;
}
.navbar-default .navbar-nav .open .dropdown-menu > li a:hover {
- font-size: 12px;
+ font-size: 12px;
}
/* Buttons */
/* ------------------------------- */
- .btn-outline {
- color: inherit;
- background-color: transparent;
- transition: all .5s;
+.btn-outline {
+ color: inherit;
+ background-color: transparent;
+ transition: all .5s;
}
.btn-primary.btn-outline {
- color: #428bca;
+ color: #428bca;
}
.btn-success.btn-outline {
- color: #5cb85c;
+ color: #5cb85c;
}
.btn-info.btn-outline {
- color: #5bc0de;
+ color: #5bc0de;
}
.btn-warning.btn-outline {
- color: #f0ad4e;
+ color: #f0ad4e;
}
.btn-danger.btn-outline {
- color: #d9534f;
+ color: #d9534f;
}
.btn-primary.btn-outline:hover,
@@ -251,7 +260,7 @@ input[type="color"],
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
- color: #fff;
+ color: #fff;
}
/* Pages */
@@ -260,52 +269,52 @@ input[type="color"],
/* Dashboard Chat */
- .chat {
- margin: 0;
- padding: 0;
- list-style: none;
+.chat {
+ margin: 0;
+ padding: 0;
+ list-style: none;
}
.chat li {
- margin-bottom: 10px;
- padding-bottom: 5px;
- border-bottom: 1px dotted #B3A9A9;
+ margin-bottom: 10px;
+ padding-bottom: 5px;
+ border-bottom: 1px dotted #B3A9A9;
}
.chat li.left .chat-body {
- margin-left: 60px;
+ margin-left: 60px;
}
.chat li.right .chat-body {
- margin-right: 60px;
+ margin-right: 60px;
}
.chat li .chat-body p {
- margin: 0;
- color: #777777;
+ margin: 0;
+ color: #777777;
}
.panel .slidedown .glyphicon,
.chat .glyphicon {
- margin-right: 5px;
+ margin-right: 5px;
}
.chat-panel .panel-body {
- height: 350px;
- overflow-y: scroll;
+ height: 350px;
+ overflow-y: scroll;
}
/* Login Page */
.login-panel {
- margin-top: 25%;
+ margin-top: 25%;
}
/* Flot Chart Containers */
.flot-chart {
- display: block;
- height: 400px;
+ display: block;
+ height: 400px;
}
.flot-chart-content {
@@ -342,13 +351,6 @@ table.dataTable thead .sorting:after {
color: rgba(50,50,50,.5);
}
-.table {
- width: 100%;
- margin-bottom: 20px;
- table-layout: fixed;
- word-wrap: break-word;
-}
-
div.dataTables_length select {
font-size: 11px;
height: 25px;
@@ -365,7 +367,7 @@ div.dataTables_paginate {
div.dataTables_paginate ul.pagination {
font-size: 11px;
-
+
}
/* Circle Buttons */
@@ -406,7 +408,7 @@ div.dataTables_paginate ul.pagination {
}
.show-grid {
- margin: 15px 0;
+ margin: 15px 0;
}
/* No Padding for Tables */
@@ -425,163 +427,196 @@ div.dataTables_paginate ul.pagination {
.borderless > tbody > tr > td {
border: none;
+ padding: 5px;
}
.borderless > thead > tr > th {
border: none;
}
-.footer {
- clear: both;
- text-align: center;
- padding: 4px 0px 0px;
- font-size: 11px;
- width: 100%;
-}
-
.margin-bottom-sm {
- margin-bottom: 5px !important;
+ margin-bottom: 5px !important;
}
p.overview {
- font-family: 'Open Sans',sans-serif;
- font-weight: 600;
- font-size: 11px;
- text-transform: uppercase;
- display: block;
- margin-bottom: 4px;
+ font-family: 'Open Sans',sans-serif;
+ font-weight: 600;
+ font-size: 11px;
+ text-transform: uppercase;
+ display: block;
+ margin-bottom: 4px;
}
span.overview {
- font-size: 14px;
- font-weight: bold;
+ font-size: 14px;
+ font-weight: bold;
}
div.overview {
- margin: 20px 0px 0px;
+ margin: 20px 0px 0px;
}
span.bigfont {
- font-size: 100%;
+ font-size: 100%;
}
th.smallwidth {
- width: 250px;
+ width: 250px;
}
.col-md-spark, .col-md-spark-2 {
- position:relative;
- min-height:1px;
- padding-left:15px;
- padding-right:15px
-}
-
-@media (min-width:992px) {
- .col-md-spark, .col-md-spark-2 {
- float: left;
- }
- .col-md-spark {
- width:16.65%
- }
- .col-md-spark-2 {
- width:20%
- }
+ position:relative;
+ min-height:1px;
+ padding-left:15px;
+ padding-right:15px
}
span.overview-mhs {
- font-size: 11px;
- font-weight: bold;
+ font-size: 11px;
+ font-weight: bold;
}
div.black {
- color: black;
+ color: black;
}
div.progress-fix {
- margin: 0px 0px 5px 0px;
+ margin: 0px 0px 5px 0px;
}
span.spark-18 {
- margin: -20%;
+ margin: -20%;
}
span.spark-25 {
- margin: -25%;
+ margin: -25%;
}
/* Test Edit */
.circle-tile {
- margin-bottom: 30px;
+ margin-bottom: 30px;
}
.circle-tile {
- margin-bottom: 15px;
- text-align: center;
+ margin-bottom: 15px;
+ text-align: center;
}
.circle-tile-content {
- padding-top: 50px;
- border-radius: 8px;
- border: 3px solid rgba(255, 255, 255, 0.3);
+ padding-top: 50px;
+ border-radius: 8px;
+ border: 3px solid rgba(255, 255, 255, 0.3);
}
.circle-tile-description {
- font-weight: bold;
- font-size: 16px;
+ font-weight: bold;
+ font-size: 16px;
}
.circle-tile-number {
- padding: 0px 1px 4px;
+ padding: 0px 1px 4px;
}
.circle-tile-heading {
- position: relative;
- width: 80px;
- height: 80px;
- margin: 0px auto -40px;
- border: 3px solid rgba(255, 255, 255, 0.3);
- border-radius: 100%;
- color: #FFF;
- transition: all 0.3s ease-in-out 0s;
+ position: relative;
+ width: 80px;
+ height: 80px;
+ margin: 0px auto -40px;
+ border: 3px solid rgba(255, 255, 255, 0.3);
+ border-radius: 100%;
+ color: #FFF;
+ transition: all 0.3s ease-in-out 0s;
}
.circle-tile-heading .fa {
- line-height: 80px;
+ line-height: 80px;
}
.lightblue {
- background-color: #2FAACE;
+ background-color: #2FAACE;
}
.text-faded {
- color: rgba(255, 255, 255, 0.7);
+ color: rgba(255, 255, 255, 0.7);
}
.text-link {
- color: #FFFFFF;
+ color: #FFFFFF;
}
p.up {
- margin: -5px 0px -8px;
- font-weight: 600;
+ margin: -5px 0px -8px;
+ font-weight: 600;
}
div.up {
- margin: -10px 0px 6px 0px;
+ margin: -10px 0px 6px 0px;
}
p.up-more {
- margin: -6px 0px 10px;
- font-weight: 600;
+ margin: -6px 0px 10px;
+ font-weight: 600;
}
p.up-more2 {
- margin: -6px 0px 0px;
+ margin: -6px 0px 0px;
}
div.fade {
- opacity: 0.8;
+ opacity: 0.8;
}
/* End Test */
+
+/* Tables */
+
+.table>tbody>tr>th
+{
+ padding-left:3px;
+ padding-bottom:3px;
+ border: 1px solid #ddd;
+ background-color: #f9f9f9;
+ padding-right:1px;
+}
+
+.table > tbody > tr > td
+{
+ padding:4px;
+}
+
+.panel > .table,
+.panel > .table-responsive > .table {
+ margin-bottom: 0;
+}
+
+.table-responsive
+{
+ white-space: nowrap;
+ width: 100%;
+ margin-bottom: 15px;
+ overflow-x: scroll;
+ overflow-y: hidden;
+ -webkit-overflow-scrolling: touch;
+ -ms-overflow-style: -ms-autohiding-scrollbar;
+}
+
+/* End Tables */
+
+/* Footer */
+
+.footer {
+ clear: both;
+ text-align: center;
+ padding: 4px 0px 0px;
+ font-size: 11px;
+ width: 100%;
+}
+
+.confirmations {
+ color: #F79D00;
+}
+
+/* End Footer */
+
+
diff --git a/public/templates/bootstrap/account/earnings/default.tpl b/public/templates/bootstrap/account/earnings/default.tpl
index 896fedec..cd152992 100644
--- a/public/templates/bootstrap/account/earnings/default.tpl
+++ b/public/templates/bootstrap/account/earnings/default.tpl
@@ -10,12 +10,13 @@
- All Time
+ Summary
+ |
{foreach $SUMMARY as $type=>$total}
{$type} |
{/foreach}
@@ -23,6 +24,7 @@
+ | All Time |
{foreach $SUMMARY as $type=>$total}
{$total|number_format:"8"} |
{/foreach}
@@ -44,7 +46,7 @@
- |
+ |
Credit |
Debit AP |
Debit MP |
@@ -57,7 +59,7 @@
- | Last Hour
+ | Last Hour
| {$BYTIME.1HourCredit|number_format:"8"} |
{$BYTIME.1HourDebitAP|number_format:"8"} |
{$BYTIME.1HourDebitMP|number_format:"8"} |
@@ -68,7 +70,7 @@
{$BYTIME.1HourTXFee|number_format:"8"} |
- | Last Day
+ | Last Day
| {$BYTIME.24HourCredit|number_format:"8"} |
{$BYTIME.24HourDebitAP|number_format:"8"} |
{$BYTIME.24HourDebitMP|number_format:"8"} |
@@ -79,7 +81,7 @@
{$BYTIME.24HourTXFee|number_format:"8"} |
- | Last Week
+ | Last Week
| {$BYTIME.1WeekCredit|number_format:"8"} |
{$BYTIME.1WeekDebitAP|number_format:"8"} |
{$BYTIME.1WeekDebitMP|number_format:"8"} |
@@ -90,7 +92,7 @@
{$BYTIME.1WeekTXFee|number_format:"8"} |
- | Last Month
+ | Last Month
| {$BYTIME.1MonthCredit|number_format:"8"} |
{$BYTIME.1MonthDebitAP|number_format:"8"} |
{$BYTIME.1MonthDebitMP|number_format:"8"} |
@@ -101,7 +103,7 @@
{$BYTIME.1MonthTXFee|number_format:"8"} |
- | Last Year
+ | Last Year
| {$BYTIME.1YearCredit|number_format:"8"} |
{$BYTIME.1YearDebitAP|number_format:"8"} |
{$BYTIME.1YearDebitMP|number_format:"8"} |
@@ -117,7 +119,6 @@
-
diff --git a/public/templates/bootstrap/account/transactions/default.tpl b/public/templates/bootstrap/account/transactions/default.tpl
index 9cfdff13..5ba392b4 100644
--- a/public/templates/bootstrap/account/transactions/default.tpl
+++ b/public/templates/bootstrap/account/transactions/default.tpl
@@ -1,5 +1,5 @@
-
-
+
Transaction History
-
+
| ID |
@@ -54,10 +54,10 @@
{section transaction $TRANSACTIONS}
- | {$TRANSACTIONS[transaction].id} |
- {$TRANSACTIONS[transaction].timestamp} |
- {$TRANSACTIONS[transaction].type} |
-
+ | {$TRANSACTIONS[transaction].id} |
+ {$TRANSACTIONS[transaction].timestamp} |
+ {$TRANSACTIONS[transaction].type} |
+
{if $TRANSACTIONS[transaction].type == 'Credit_PPS' OR
$TRANSACTIONS[transaction].type == 'Fee_PPS' OR
$TRANSACTIONS[transaction].type == 'Donation_PPS' OR
@@ -73,14 +73,14 @@
Unconfirmed
{/if}
|
- {$TRANSACTIONS[transaction].coin_address|truncate:20:"...":true:true} |
+ {$TRANSACTIONS[transaction].coin_address|truncate:20:"...":true:true} |
{if ! $GLOBAL.website.transactionexplorer.disabled}
- {$TRANSACTIONS[transaction].txid|truncate:20:"...":true:true} |
+ {$TRANSACTIONS[transaction].txid|truncate:20:"...":true:true} |
{else}
- {$TRANSACTIONS[transaction].txid|truncate:20:"...":true:true} |
+ {$TRANSACTIONS[transaction].txid|truncate:20:"...":true:true} |
{/if}
- {if $TRANSACTIONS[transaction].height == 0}n/a{else}{$TRANSACTIONS[transaction].height}{/if} |
- {$TRANSACTIONS[transaction].amount|number_format:"8"} |
+ {if $TRANSACTIONS[transaction].height == 0}n/a{else}{$TRANSACTIONS[transaction].height}{/if} |
+ {$TRANSACTIONS[transaction].amount|number_format:"8"} |
{/section}
diff --git a/public/templates/bootstrap/account/workers/default.tpl b/public/templates/bootstrap/account/workers/default.tpl
index 8ca7e40a..6a6dbc8b 100644
--- a/public/templates/bootstrap/account/workers/default.tpl
+++ b/public/templates/bootstrap/account/workers/default.tpl
@@ -42,7 +42,7 @@
Worker Login |
Worker Password |
Active |
- {if $GLOBAL.config.disable_notifications != 1 && $DISABLE_IDLEWORKERNOTIFICATIONS != 1}Monitor | {/if}
+ {if $GLOBAL.config.disable_notifications != 1 && $DISABLE_IDLEWORKERNOTIFICATIONS != 1}Monitor | {/if}
Khash/s |
Difficulty |
Action |
@@ -62,7 +62,7 @@
|
|
{if $GLOBAL.config.disable_notifications != 1 && $DISABLE_IDLEWORKERNOTIFICATIONS != 1}
-
+ |
|
diff --git a/public/templates/bootstrap/admin/registrations/default.tpl b/public/templates/bootstrap/admin/registrations/default.tpl
index 1bbaba47..93ba2acd 100644
--- a/public/templates/bootstrap/admin/registrations/default.tpl
+++ b/public/templates/bootstrap/admin/registrations/default.tpl
@@ -3,7 +3,7 @@
- Last registered Users
+ Last Registered Users
@@ -15,7 +15,7 @@
eMail |
Reg. Date |
Invite |
-
Invited from |
+
Invited From |
@@ -25,7 +25,7 @@
{$LASTREGISTEREDUSERS[user].mposuser} |
{$LASTREGISTEREDUSERS[user].email} |
{$LASTREGISTEREDUSERS[user].signup_timestamp|date_format:"%d/%m %H:%M:%S"} |
- {if !$LASTREGISTEREDUSERS[user].inviter}{else}{/if} |
+ {if !$LASTREGISTEREDUSERS[user].inviter}{else}{/if} |
{$LASTREGISTEREDUSERS[user].inviter} |
{/section}
diff --git a/public/templates/bootstrap/admin/transactions/default.tpl b/public/templates/bootstrap/admin/transactions/default.tpl
index cf2cf547..27a159ae 100644
--- a/public/templates/bootstrap/admin/transactions/default.tpl
+++ b/public/templates/bootstrap/admin/transactions/default.tpl
@@ -7,7 +7,7 @@
-
+
{foreach $SUMMARY as $type=>$total}
@@ -31,7 +31,7 @@
{/if}