mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-18 13:09:04 +02:00
31 lines
677 B
HTML
31 lines
677 B
HTML
{% extends "_base.html" %}
|
|
{% load i18n %}
|
|
{% load sekizai_tags %}
|
|
{% load bootstrap %}
|
|
|
|
{% block content %}
|
|
{% include "profile_header_menu.html" %}
|
|
<div style="padding-top: 2rem; ">
|
|
{% block profile_content %}{% endblock %}
|
|
</div>
|
|
|
|
<p class="fs-6 text-muted">
|
|
Update your Mempool endpoint.
|
|
<br><br>
|
|
<form action="" method="POST">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ form|bootstrap }}
|
|
<tr>
|
|
<td> </td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" style="text-align: center;">
|
|
<button class="btn btn-primary" type="submit">Update Mempool</button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</p>
|
|
{% endblock %}
|