-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #285 from WadeBarnes/indy-scan
Add support for linking to an IndyScan instance.
- Loading branch information
Showing
5 changed files
with
54 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<div class="panel panel-default panel-ledger-status" style="display: none" v-show="ready"> | ||
<div class="panel-heading"> | ||
<h2> | ||
<span class="fa fa-sitemap"></span> | ||
Ledger State | ||
</h2> | ||
</div> | ||
<div class="panel-body"> | ||
<div class="panel panel-node" v-if="syncing"> | ||
<div class="panel-body loading"> | ||
<p> | ||
<span class="fa fa-info-circle"></span> Fetching transactions | ||
</p> | ||
</div> | ||
</div> | ||
<p> | ||
View the state of the ledgers: | ||
</p> | ||
<p> | ||
{% if INDY_SCAN_URL %} | ||
<a href="{{ INDY_SCAN_URL }}" class="tool" target="_blank"><span class="fa fa-chevron-right left"></span>{{ INDY_SCAN_TEXT }} <i class="fa fa-external-link"></i></a> | ||
{% else %} | ||
<a href="/browse/domain" class="tool"><span class="fa fa-chevron-right left"></span>Domain</a> | ||
<br> | ||
<a href="/browse/pool" class="tool"><span class="fa fa-chevron-right left"></span>Pool</a> | ||
<br> | ||
<a href="/browse/config" class="tool"><span class="fa fa-chevron-right left"></span>Config</a> | ||
{% endif %} | ||
</p> | ||
</div> | ||
</div> |