Browse Source

Update wallet.html

fee_issues
Arc 5 years ago
committed by GitHub
parent
commit
7b11167fef
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 27
      lnbits/templates/wallet.html

27
lnbits/templates/wallet.html

@ -9,7 +9,10 @@
<li class="header"><b>Instant wallet, bookmark to save</b></li> <li class="header"><b>Instant wallet, bookmark to save</b></li>
<li></li> <li></li>
</ul> </ul>
{% endblock %} {% block menuitems %} {% endblock %}
{% block menuitems %}
<li class="active treeview"> <li class="active treeview">
<a href="#"> <a href="#">
<i class="fa fa-bitcoin"></i> <span>Wallets</span> <i class="fa fa-bitcoin"></i> <span>Wallets</span>
@ -18,25 +21,33 @@
<ul class="treeview-menu"> <ul class="treeview-menu">
{% for w in user_wallets %} {% for w in user_wallets %}
<li> <li>
<a href="wallet?wal={{ w.id }}&usr={{ w.user }}" <a href="{{ url_for('wallet') }}?wal={{ w.id }}&usr={{ w.user }}"><i class="fa fa-bolt"></i> {{ w.name }}</a>
><i class="fa fa-bolt"></i> {{ w.name }}</a
>
</li> </li>
{% endfor %} {% endfor %}
<li><a onclick="sidebarmake()">Add a wallet +</a></li> <li><a onclick="sidebarmake()">Add a wallet +</a></li>
<div id="sidebarmake"></div> <div id="sidebarmake"></div>
</ul> </ul>
</li> </li>
<li class="treeview"> <li class="treeview">
<a href="extensions?usr={{ user }}"> <a href="#">
<i class="fa fa-th"></i> <span>Extensions</span> <i class="fa fa-th"></i> <span>Extensions</span>
<i class="fa fa-angle-left pull-right"></i> <i class="fa fa-angle-left pull-right"></i>
</a> </a>
<ul class="treeview-menu">
{% for extension in EXTENSIONS %}
{% if extension.code in user_ext %}
<li>
<a href="{{ url_for(extension.code + '.index') }}?usr={{ user }}"><i class="fa fa-plus"></i> {{ extension.name }}</a>
</li> </li>
{% endif %}
{% endfor %}
<li>
<a href="{{ url_for('extensions') }}?usr={{ user }}">Manager</a></li>
</ul>
</li>
{% endblock %}
{% block body %}
{% endblock %} {% block body %}
<!-- Right side column. Contains the navbar and content of the page --> <!-- Right side column. Contains the navbar and content of the page -->
<div class="content-wrapper"> <div class="content-wrapper">
<!-- Content Header (Page header) --> <!-- Content Header (Page header) -->

Loading…
Cancel
Save