diff --git a/public/templates/test/global/navigation.tpl b/public/templates/test/global/navigation.tpl
index d81da305..424decbf 100644
--- a/public/templates/test/global/navigation.tpl
+++ b/public/templates/test/global/navigation.tpl
@@ -29,6 +29,7 @@
Pool
Blocks
Graphs
+ Round
Other
diff --git a/public/templates/test/statistics/round/block_stats.tpl b/public/templates/test/statistics/round/block_stats.tpl
new file mode 100644
index 00000000..c6f21d25
--- /dev/null
+++ b/public/templates/test/statistics/round/block_stats.tpl
@@ -0,0 +1,61 @@
+
+
+
+
+
+ |
+
+ |
+
+
+ |
+
+
+ | ID |
+ {$BLOCKDETAILS.id|default:"0"} |
+
+
+ | Height |
+ {if ! $GLOBAL.website.blockexplorer.disabled}
+ {$BLOCKDETAILS.height} |
+ {else}
+ {$BLOCKDETAILS.height} |
+ {/if}
+
+
+ | Amount |
+ {$BLOCKDETAILS.amount|default:"0"} |
+
+
+ | Confirmations |
+ {$BLOCKDETAILS.confirmations|default:"0"} |
+
+
+ | Difficulty |
+ {$BLOCKDETAILS.difficulty|default:"0"} |
+
+
+ | Time |
+ {$BLOCKDETAILS.time|default:"0"} |
+
+
+ | Shares |
+ {$BLOCKDETAILS.shares|default:"0"} |
+
+
+ | Finder |
+ {$BLOCKDETAILS.finder|default:"0"} |
+
+
+
+
+
diff --git a/public/templates/test/statistics/round/default.tpl b/public/templates/test/statistics/round/default.tpl
new file mode 100644
index 00000000..d1379d61
--- /dev/null
+++ b/public/templates/test/statistics/round/default.tpl
@@ -0,0 +1,3 @@
+{include file="statistics/round/block_stats.tpl"}
+{include file="statistics/round/round_transactions.tpl"}
+{include file="statistics/round/round_shares.tpl"}
diff --git a/public/templates/test/statistics/round/round_shares.tpl b/public/templates/test/statistics/round/round_shares.tpl
new file mode 100644
index 00000000..aacb0e74
--- /dev/null
+++ b/public/templates/test/statistics/round/round_shares.tpl
@@ -0,0 +1,27 @@
+
+
+
+
+
+ | Rank |
+ User Name |
+ Valid |
+ Invalid |
+ Invalid % |
+
+
+
+{assign var=rank value=1}
+{assign var=listed value=0}
+{section contrib $ROUNDSHARES}
+
+ | {$rank++} |
+ {if $ROUNDSHARES[contrib].is_anonymous|default:"0" == 1}anonymous{else}{$ROUNDSHARES[contrib].username|escape}{/if} |
+ {$ROUNDSHARES[contrib].valid|number_format} |
+ {$ROUNDSHARES[contrib].invalid|number_format} |
+ {($ROUNDSHARES[contrib].invalid / $ROUNDSHARES[contrib].valid * 100)|number_format:"2"} |
+
+{/section}
+
+
+
diff --git a/public/templates/test/statistics/round/round_transactions.tpl b/public/templates/test/statistics/round/round_transactions.tpl
new file mode 100644
index 00000000..80af70ad
--- /dev/null
+++ b/public/templates/test/statistics/round/round_transactions.tpl
@@ -0,0 +1,23 @@
+
+
+
+
+
+ | TX # |
+ User Name |
+ Type |
+ Amount |
+
+
+
+{section txs $ROUNDTRANSACTIONS}
+
+ | {$ROUNDTRANSACTIONS[txs].id|default:"0"} |
+ {$ROUNDTRANSACTIONS[txs].username|escape} |
+ {$ROUNDTRANSACTIONS[txs].type|default:""} |
+ {$ROUNDTRANSACTIONS[txs].amount|default:"0"|number_format:"8"} |
+
+{/section}
+
+
+