Update index.html

This commit is contained in:
Arc 2020-02-23 00:44:10 +00:00 committed by GitHub
parent 7b11167fef
commit 6f26032744
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,47 +9,44 @@
<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 %}
<li class="treeview">
<a href="#">
<i class="fa fa-bitcoin"></i> <span>Wallets</span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
{% for w in user_wallets %}
<li>
<a href="{{ url_for('wallet') }}?wal={{ w.id }}&usr={{ w.user }}"
><i class="fa fa-bolt"></i> {{ w.name }}</a
>
</li>
{% endfor %}
<li><a onclick="sidebarmake()">Add a wallet +</a></li>
<div id="sidebarmake"></div>
</ul>
</li>
<li class="active treeview"> {% block menuitems %}
<a href="#"> <li class="treeview">
<i class="fa fa-th"></i> <span>Extensions</span> <a href="#">
<i class="fa fa-angle-left pull-right"></i> <i class="fa fa-bitcoin"></i> <span>Wallets</span>
</a> <i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu"> <ul class="treeview-menu">
{% if "withdraw" in user_ext %} {% for w in user_wallets %}
<li> <li>
<a href="{{ url_for('withdraw.index') }}?usr={{ 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-plus"></i> LNURLw</a> </li>
</li> {% endfor %}
{% endif %} <li><a onclick="sidebarmake()">Add a wallet +</a></li>
<li> <div id="sidebarmake"></div>
<a href="{{ url_for('extensions') }}?usr={{ user }}" </ul>
>Manager </a> </li>
</li> <li class="active treeview">
<a href="#">
<i class="fa fa-th"></i> <span>Extensions</span>
<i class="fa fa-angle-left pull-right"></i>
</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>
{% endif %}
{% endfor %}
<li>
<a href="{{ url_for('extensions') }}?usr={{ user }}">Manager</a></li>
</ul>
</li>
{% endblock %}
{% block body %}
</ul>
</li>
{% 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) -->