setup improved static and templates
parent
917ba7baa2
commit
8736a9a1d0
File diff suppressed because it is too large
Load Diff
@ -1,71 +1,113 @@
|
||||
{% extends "base" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="title">
|
||||
<h1>Monero Block Explorer</h1>
|
||||
</div>
|
||||
<div class="search">
|
||||
<h2>Search</h2>
|
||||
<form action="/search" method="get">
|
||||
<input type="text" name="value" placeholder="Enter a transaction hash, block hash, or block height.">
|
||||
<input type="submit" value="Search">
|
||||
</form>
|
||||
</div>
|
||||
<div class="server-info">
|
||||
<h2>Server Info</h2>
|
||||
</div>
|
||||
<div class="network-stats">
|
||||
<h2>Network Stats</h2>
|
||||
</div>
|
||||
<div class="tx-pool">
|
||||
<h2>Transaction Pool</h2>
|
||||
</div>
|
||||
<div class="">
|
||||
<h2>Top Block</h2>
|
||||
</div>
|
||||
<div class="">
|
||||
<h2>Previous Block</h2>
|
||||
</div>
|
||||
|
||||
<h1>get_info</h1>
|
||||
<p>alt_blocks_count: {{ alt_blocks_count }}</p>
|
||||
<p>block_size_limit: {{ block_size_limit }}</p>
|
||||
<p>block_size_median: {{ block_size_median }}</p>
|
||||
<p>block_weight_limit: {{ block_weight_limit }}</p>
|
||||
<p>block_weight_median: {{ block_weight_median }}</p>
|
||||
<p>bootstrap_daemon_address: {{ bootstrap_daemon_address }}</p>
|
||||
<p>credits: {{ credits }}</p>
|
||||
<p>cumulative_difficulty: {{ cumulative_difficulty }}</p>
|
||||
<p>cumulative_difficulty_top64: {{ cumulative_difficulty_top64 }}</p>
|
||||
<p>database_size: {{ database_size }}</p>
|
||||
<p>difficulty: {{ difficulty }}</p>
|
||||
<p>difficulty_top64: {{ difficulty_top64 }}</p>
|
||||
<p>free_space: {{ free_space }}</p>
|
||||
<p>grey_peerlist_size: {{ grey_peerlist_size }}</p>
|
||||
<p>height: {{ height }}</p>
|
||||
<p>height_without_bootstrap: {{ height_without_bootstrap }}</p>
|
||||
<p>incoming_connections_count: {{ incoming_connections_count }}</p>
|
||||
<p>mainnet: {{ mainnet }}</p>
|
||||
<p>nettype: {{ nettype }}</p>
|
||||
<p>offline: {{ offline }}</p>
|
||||
<p>outgoing_connections_count: {{ outgoing_connections_count }}</p>
|
||||
<p>rpc_connections_count: {{ rpc_connections_count }}</p>
|
||||
<p>stagenet: {{ stagenet }}</p>
|
||||
<p>start_time: {{ start_time }}</p>
|
||||
<p>status: {{ status }}</p>
|
||||
<p>target: {{ target }}</p>
|
||||
<p>target_height: {{ target_height }}</p>
|
||||
<p>testnet: {{ testnet }}</p>
|
||||
<p>top_block_hash: {{ top_block_hash }}</p>
|
||||
<p>top_hash: {{ top_hash }}</p>
|
||||
<p>tx_count: {{ tx_count }}</p>
|
||||
<p>tx_pool_size: {{ tx_pool_size }}</p>
|
||||
<p>untrusted: {{ untrusted }}</p>
|
||||
<p>update_available: {{ update_available }}</p>
|
||||
<p>version: {{ version }}</p>
|
||||
<p>was_bootstrap_ever_used: {{ was_bootstrap_ever_used }}</p>
|
||||
<p>white_peerlist_size: {{ white_peerlist_size }}</p>
|
||||
<p>wide_cumulative_difficulty: {{ wide_cumulative_difficulty }}</p>
|
||||
<p>wide_difficulty: {{ wide_difficulty }}</p>
|
||||
<div id="page-wrapper">
|
||||
<section id="header">
|
||||
<h1><a href="/">Monero Block Explorer</a></h1>
|
||||
<nav id="nav">
|
||||
<div class="search">
|
||||
<form action="/search" method="get">
|
||||
<input type="text" name="value" placeholder="Enter a transaction hash, block hash, or block height.">
|
||||
<input type="submit" value="Search">
|
||||
</form>
|
||||
</div>
|
||||
</nav>
|
||||
</section>
|
||||
<section id="main">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<section>
|
||||
<header class="major">
|
||||
<h2>Network Stats</h2>
|
||||
</header>
|
||||
<div class="row">
|
||||
<div class="col-3 col-6-medium col-12-small">
|
||||
<section class="box">
|
||||
<header>
|
||||
<h3>Version</h3>
|
||||
</header>
|
||||
<p>{{ version }}</p>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-3 col-6-medium col-12-small">
|
||||
<section class="box">
|
||||
<header>
|
||||
<h3>Difficulty</h3>
|
||||
</header>
|
||||
<p>{{ difficulty }}</p>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-3 col-6-medium col-12-small">
|
||||
<section class="box">
|
||||
<header>
|
||||
<h3>Height</h3>
|
||||
</header>
|
||||
<p>{{ height }}</p>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-3 col-6-medium col-12-small">
|
||||
<section class="box">
|
||||
<header>
|
||||
<h3>Network</h3>
|
||||
</header>
|
||||
<p>{{ nettype }}</p>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-3 col-6-medium col-12-small">
|
||||
<section class="box">
|
||||
<header>
|
||||
<h3>Transactions</h3>
|
||||
</header>
|
||||
<p>{{ tx_count }}</p>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-3 col-6-medium col-12-small">
|
||||
<section class="box">
|
||||
<header>
|
||||
<h3>Mempool Size</h3>
|
||||
</header>
|
||||
<p>{{ tx_pool_size }}</p>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-3 col-6-medium col-12-small">
|
||||
<section class="box">
|
||||
<header>
|
||||
<h3>Connections</h3>
|
||||
</header>
|
||||
<p>{{ incoming_connections_count }} in / {{ outgoing_connections_count }} out</p>
|
||||
</section>
|
||||
</div>
|
||||
<div class="col-3 col-6-medium col-12-small">
|
||||
<section class="box">
|
||||
<header>
|
||||
<h3>Status</h3>
|
||||
</header>
|
||||
<p>{{ status }}</p>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section id="footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div id="copyright">
|
||||
<ul class="links">
|
||||
<li>Design: <a href="https://html5up.net" target=_blank>HTML5 UP</a></li>
|
||||
<li>Source: <a href="https://github.com/lalanza808/monero-block-explorer" target=_blank>Github</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
{% endblock content %}
|
||||
|
Loading…
Reference in New Issue