diff --git a/basicswap/static/images/elements/circle2-violet.svg b/basicswap/static/images/elements/circle2-violet.svg new file mode 100644 index 0000000..f61a826 --- /dev/null +++ b/basicswap/static/images/elements/circle2-violet.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/basicswap/static/images/elements/dots2-red.svg b/basicswap/static/images/elements/dots2-red.svg new file mode 100644 index 0000000..c8c9417 --- /dev/null +++ b/basicswap/static/images/elements/dots2-red.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/basicswap/static/images/gfx/dashboard.jpg b/basicswap/static/images/gfx/dashboard.jpg new file mode 100644 index 0000000..af2b0ed Binary files /dev/null and b/basicswap/static/images/gfx/dashboard.jpg differ diff --git a/basicswap/static/images/gfx/dashboard.png b/basicswap/static/images/gfx/dashboard.png deleted file mode 100644 index f26dcdc..0000000 Binary files a/basicswap/static/images/gfx/dashboard.png and /dev/null differ diff --git a/basicswap/templates/active.html b/basicswap/templates/active.html index 2cefab1..a7007d6 100644 --- a/basicswap/templates/active.html +++ b/basicswap/templates/active.html @@ -37,7 +37,7 @@
{% if refresh %} - + @@ -45,7 +45,7 @@ Refresh {{ refresh }} seconds {% else %} - + diff --git a/basicswap/templates/bids.html b/basicswap/templates/bids.html index 192e11b..4e2dee9 100644 --- a/basicswap/templates/bids.html +++ b/basicswap/templates/bids.html @@ -125,7 +125,7 @@
-
diff --git a/basicswap/templates/header.html b/basicswap/templates/header.html index 488c291..a352618 100644 --- a/basicswap/templates/header.html +++ b/basicswap/templates/header.html @@ -52,7 +52,7 @@ - New Offer
+ Place new Offer
- {{ data.created_at }} | formatts + {{ data.created_at }} | formatts }} diff --git a/basicswap/templates/offers.html b/basicswap/templates/offers.html index 39c7873..b44294a 100644 --- a/basicswap/templates/offers.html +++ b/basicswap/templates/offers.html @@ -31,11 +31,24 @@ -
+

{{ page_type }}

{{ page_type_description }}

+
diff --git a/basicswap/ui/page_offers.py b/basicswap/ui/page_offers.py index 22f8ef1..4322c38 100644 --- a/basicswap/ui/page_offers.py +++ b/basicswap/ui/page_offers.py @@ -637,6 +637,7 @@ def page_offers(self, url_split, post_string, sent=False): template = server.env.get_template('offers.html') return self.render_template(template, { 'page_type': 'Your Offers' if sent else 'Network Order Book', + 'page_button': 'hidden' if sent else '', 'page_type_description': 'Your entire offer history.' if sent else 'Consult available offers in the order book and initiate a coin swap.', 'messages': messages, 'show_chart': False if sent else swap_client.settings.get('show_chart', True),