unified header_title template values across dashboard applet destination pages; styled &/ added applet titles across all applets
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
id="id_applet_my_notes"
|
||||
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
||||
>
|
||||
<a href="{% url 'my_notes' user.id %}" class="my-notes-main">My notes:</a>
|
||||
<h2><a href="{% url 'my_notes' user.id %}" class="my-notes-main">My notes</a></h2>
|
||||
<div class="my-notes-container">
|
||||
<ul>
|
||||
{% for note in recent_notes %}
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
id="id_applet_wallet"
|
||||
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
||||
>
|
||||
<span>Writs: {{ user.wallet.writs }}</span>
|
||||
<a href="{% url "wallet" %}" class="wallet-manage-link">Manage Wallet</a>
|
||||
<h2><a href="{% url "wallet" %}" class="wallet-manage-link">Manage Wallet</a></h2>
|
||||
<span><i class="fa-solid fa-ticket"></i>: {{ user.wallet.writs }}</span>
|
||||
</section>
|
||||
@@ -1,7 +1,8 @@
|
||||
{% extends "core/base.html" %}
|
||||
{% load lyric_extras %}
|
||||
|
||||
{% block header_text %}{{ user|display_name }}'s notes{% endblock header_text %}
|
||||
{% block title_text %}Dashnotes{% endblock title_text %}
|
||||
{% block header_text %}<span>Dash</span>notes{% endblock header_text %}
|
||||
|
||||
{% block content %}
|
||||
<h3>{{ owner|display_name }}'s notes</h3>
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{% extends "core/base.html" %}
|
||||
{% load lyric_extras %}
|
||||
|
||||
{% block title_text %}Your note{% endblock title_text %}
|
||||
{% block header_text %}Your note{% endblock header_text %}
|
||||
{% block title_text %}Dashnote{% endblock title_text %}
|
||||
{% block header_text %}<span>Dash</span>note{% endblock header_text %}
|
||||
|
||||
|
||||
{% block extra_header %}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
id="id_wallet_balances"
|
||||
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
||||
>
|
||||
<h2>Balances</h2>
|
||||
<div><i class="fa-solid fa-ticket"></i>: <span id="id_writs_balance">{{ wallet.writs }}</span></div>
|
||||
<div>Esteem: <span id="id_esteem_balance">{{ wallet.esteem }}</span></div>
|
||||
<div id="id_tithe_token_shop">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
id="id_payment_methods"
|
||||
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
||||
>
|
||||
<h2>Payment Methods</h2>
|
||||
<h2>Payment methods</h2>
|
||||
<button id="id_add_payment_method">Add Payment Method</button>
|
||||
<div id="id_stripe_payment_element"></div>
|
||||
<button id="id_save_payment_method" hidden>Save Card</button>
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
class="wallet-tokens"
|
||||
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
||||
>
|
||||
<h2>Tokens</h2>
|
||||
<div class="token-row">
|
||||
{% if coin %}
|
||||
<div id="id_coin_on_a_string" class="token">
|
||||
<i class="fa-solid fa-clover"></i>
|
||||
@@ -50,4 +52,5 @@
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user