2022-10-13 14:26:43 +00:00
|
|
|
{% load static %}
|
|
|
|
{% load has_plan %}
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en-GB">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>XF - {{ request.path_info }}</title>
|
|
|
|
<link rel="shortcut icon" href="{% static 'favicon.ico' %}">
|
|
|
|
<link rel="manifest" href="{% static 'manifest.webmanifest' %}">
|
|
|
|
<link rel="stylesheet" href="{% static 'css/bulma.min.css' %}">
|
|
|
|
<link rel="stylesheet" href="{% static 'css/bulma-tooltip.min.css' %}">
|
|
|
|
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css">
|
|
|
|
<link rel="stylesheet" href="{% static 'css/gridstack.min.css' %}">
|
|
|
|
<script src="{% static 'js/htmx.min.js' %}" integrity="sha384-cZuAZ+ZbwkNRnrKi05G/fjBX+azI9DNOkNYysZ0I/X5ZFgsmMiBXgDZof30F5ofc" crossorigin="anonymous"></script>
|
|
|
|
<script defer src="{% static 'js/hyperscript.min.js' %}" integrity="sha384-6GYN8BDHOJkkru6zcpGOUa//1mn+5iZ/MyT6mq34WFIpuOeLF52kSi721q0SsYF9" crossorigin="anonymous"></script>
|
|
|
|
<script defer src="{% static 'js/remove-me.js' %}" integrity="sha384-6fHcFNoQ8QEI3ZDgw9Z/A6Brk64gF7AnFbLgdrumo8/kBbsKQ/wo7wPegj5WkzuG" crossorigin="anonymous"></script>
|
|
|
|
<script src="{% static 'js/gridstack-all.js' %}"></script>
|
|
|
|
<script defer src="{% static 'js/magnet.min.js' %}"></script>
|
|
|
|
<script>
|
|
|
|
document.addEventListener("restore-scroll", function(event) {
|
|
|
|
var scrollpos = localStorage.getItem('scrollpos');
|
|
|
|
if (scrollpos) {
|
|
|
|
window.scrollTo(0, scrollpos)
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
document.addEventListener("htmx:beforeSwap", function(event) {
|
|
|
|
localStorage.setItem('scrollpos', window.scrollY);
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
|
|
|
|
// Get all "navbar-burger" elements
|
|
|
|
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
|
|
|
|
|
|
|
|
// Add a click event on each of them
|
|
|
|
$navbarBurgers.forEach( el => {
|
|
|
|
el.addEventListener('click', () => {
|
|
|
|
|
|
|
|
// Get the target from the "data-target" attribute
|
|
|
|
const target = el.dataset.target;
|
|
|
|
const $target = document.getElementById(target);
|
|
|
|
|
|
|
|
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
|
|
|
|
el.classList.toggle('is-active');
|
|
|
|
$target.classList.toggle('is-active');
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
.icon { border-bottom: 0px !important;}
|
|
|
|
.wrap {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
.nowrap-parent {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.nowrap-child {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.htmx-indicator{
|
|
|
|
opacity:0;
|
|
|
|
transition: opacity 500ms ease-in;
|
|
|
|
}
|
|
|
|
.htmx-request .htmx-indicator{
|
|
|
|
opacity:1
|
|
|
|
}
|
|
|
|
.htmx-request.htmx-indicator{
|
|
|
|
opacity:1
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltiptext {
|
|
|
|
visibility: hidden;
|
|
|
|
background-color: black;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
padding: 5px 0;
|
|
|
|
border-radius: 6px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rounded-tooltip:hover .tooltiptext {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table {
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr:hover {
|
|
|
|
cursor:pointer;
|
|
|
|
background-color:rgba(221, 224, 255, 0.3) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.panel-block {
|
|
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.panel-block:hover {
|
|
|
|
cursor:pointer;
|
|
|
|
background-color:rgba(221, 224, 255, 0.3) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel, .box, .modal {
|
|
|
|
background-color:rgba(250, 250, 250, 0.5) !important;
|
|
|
|
}
|
|
|
|
.modal, .modal.box{
|
|
|
|
background-color:rgba(210, 210, 210, 0.9) !important;
|
|
|
|
}
|
|
|
|
.modal-background{
|
|
|
|
background-color:rgba(255, 255, 255, 0.3) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-background-grey-lighter{
|
|
|
|
background-color:rgba(219, 219, 219, 0.5) !important;
|
|
|
|
}
|
|
|
|
.navbar {
|
|
|
|
background-color:rgba(0, 0, 0, 0.03) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-stack-item-content {
|
|
|
|
display: flex !important;
|
|
|
|
flex-direction: column !important;
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
overflow-y: hidden !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
display: flex !important;
|
|
|
|
flex-direction: column !important;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-block {
|
|
|
|
overflow-y:auto;
|
|
|
|
overflow-x:auto;
|
|
|
|
min-height: 90%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.floating-window {
|
|
|
|
/* background-color:rgba(210, 210, 210, 0.6) !important; */
|
|
|
|
display: flex !important;
|
|
|
|
flex-direction: column !important;
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
overflow-y: hidden !important;
|
|
|
|
max-height: 300px;
|
|
|
|
z-index: 9000;
|
|
|
|
position: absolute;
|
|
|
|
top: 50px;
|
|
|
|
left: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.floating-window .panel {
|
|
|
|
background-color:rgba(250, 250, 250, 0.8) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.float-right {
|
|
|
|
float: right;
|
|
|
|
padding-right: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
.grid-stack-item:hover .ui-resizable-handle {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
.ui-resizable-handle {
|
|
|
|
z-index: 39 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
2022-12-09 17:09:03 +00:00
|
|
|
<!-- Piwik --> {# Yes it's in the source, fight me #}
|
|
|
|
<script type="text/javascript">
|
|
|
|
var _paq = _paq || [];
|
|
|
|
_paq.push(['trackPageView']);
|
|
|
|
_paq.push(['enableLinkTracking']);
|
|
|
|
(function() {
|
|
|
|
_paq.push(['setTrackerUrl', 'https://api-f98632bdcf666e3217c6c1a2bafc6c09.s.zm.is']);
|
|
|
|
_paq.push(['setSiteId', 5]);
|
|
|
|
_paq.push(['setApiToken', 'En6AFpSwq4vx3fuXEjSUY6jhUPi_MRinYBQw1FxOqsy']);
|
|
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
|
|
g.type='text/javascript'; g.async=true; g.defer=true; g.src='https://c87zpt9a74m181wto33r.s.zm.is/embed.js'; s.parentNode.insertBefore(g,s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<!-- End Piwik Code -->
|
2022-10-13 14:26:43 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<nav class="navbar" role="navigation" aria-label="main navigation">
|
|
|
|
<div class="navbar-brand">
|
|
|
|
<a class="navbar-item" href="{% url 'home' %}">
|
|
|
|
<img src="{% static 'logo.svg' %}" width="112" height="28" alt="logo">
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="bar">
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="bar" class="navbar-menu">
|
|
|
|
<div class="navbar-start">
|
|
|
|
<a class="navbar-item" href="{% url 'home' %}">
|
|
|
|
Home
|
|
|
|
</a>
|
2022-10-17 06:20:30 +00:00
|
|
|
{% if user.is_authenticated %}
|
2022-11-29 07:20:39 +00:00
|
|
|
|
|
|
|
<div class="navbar-item has-dropdown is-hoverable">
|
|
|
|
<a class="navbar-link">
|
|
|
|
View
|
|
|
|
</a>
|
|
|
|
<div class="navbar-dropdown">
|
|
|
|
<a class="navbar-item" href="{% url 'profit' type='page' %}">
|
|
|
|
Profit by account
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-10-27 17:08:40 +00:00
|
|
|
<div class="navbar-item has-dropdown is-hoverable">
|
|
|
|
<a class="navbar-link">
|
|
|
|
Manage
|
2022-10-13 17:20:30 +00:00
|
|
|
</a>
|
2022-10-27 17:08:40 +00:00
|
|
|
<div class="navbar-dropdown">
|
|
|
|
<a class="navbar-item" href="{% url 'positions' type='page' %}">
|
|
|
|
Positions
|
|
|
|
</a>
|
|
|
|
<a class="navbar-item" href="{% url 'trades' type='page' %}">
|
|
|
|
Bot Trades
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-13 14:26:43 +00:00
|
|
|
<div class="navbar-item has-dropdown is-hoverable">
|
|
|
|
<a class="navbar-link">
|
2022-10-27 17:08:40 +00:00
|
|
|
Setup
|
2022-10-13 14:26:43 +00:00
|
|
|
</a>
|
|
|
|
|
|
|
|
<div class="navbar-dropdown">
|
2022-10-27 17:08:40 +00:00
|
|
|
<a class="navbar-item" href="{% url 'hooks' type='page' %}">
|
|
|
|
Hooks
|
|
|
|
</a>
|
2022-11-29 07:20:21 +00:00
|
|
|
<a class="navbar-item" href="{% url 'signals' type='page' %}">
|
|
|
|
Signals
|
|
|
|
</a>
|
2022-10-27 17:08:40 +00:00
|
|
|
<a class="navbar-item" href="{% url 'accounts' type='page' %}">
|
|
|
|
Accounts
|
2022-10-13 14:26:43 +00:00
|
|
|
</a>
|
2022-10-27 17:08:40 +00:00
|
|
|
<a class="navbar-item" href="{% url 'strategies' type='page' %}">
|
|
|
|
Strategies
|
2022-10-13 14:26:43 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-11-25 18:01:34 +00:00
|
|
|
<div class="navbar-item has-dropdown is-hoverable">
|
|
|
|
<a class="navbar-link">
|
|
|
|
Limits
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<div class="navbar-dropdown">
|
|
|
|
<a class="navbar-item" href="{% url 'tradingtimes' type='page' %}">
|
|
|
|
Trading Times
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-13 14:26:43 +00:00
|
|
|
{% endif %}
|
2022-10-27 17:08:40 +00:00
|
|
|
{% if settings.STRIPE_ENABLED %}
|
|
|
|
{% if user.is_authenticated %}
|
|
|
|
<a class="navbar-item" href="{% url 'billing' %}">
|
|
|
|
Billing
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2022-10-13 14:26:43 +00:00
|
|
|
<a class="navbar-item add-button">
|
|
|
|
Install
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="navbar-end">
|
|
|
|
<div class="navbar-item">
|
|
|
|
<div class="buttons">
|
|
|
|
{% if not user.is_authenticated %}
|
2022-12-08 07:20:46 +00:00
|
|
|
<a class="button" href="{% url 'signup' %}">
|
2022-10-13 14:26:43 +00:00
|
|
|
<strong>Sign up</strong>
|
|
|
|
</a>
|
2022-12-08 07:20:46 +00:00
|
|
|
<a class="button" href="{% url 'two_factor:login' %}">
|
2022-10-13 14:26:43 +00:00
|
|
|
Log in
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if user.is_authenticated %}
|
2022-11-28 19:45:22 +00:00
|
|
|
<a class="button" href="{% url 'two_factor:profile' %}">Security</a>
|
|
|
|
<a class="button" href="{% url 'logout' %}">Logout</a>
|
2022-10-13 14:26:43 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
<script>
|
|
|
|
let deferredPrompt;
|
|
|
|
const addBtn = document.querySelector('.add-button');
|
|
|
|
addBtn.style.display = 'none';
|
|
|
|
window.addEventListener('beforeinstallprompt', (e) => {
|
|
|
|
// Prevent Chrome 67 and earlier from automatically showing the prompt
|
|
|
|
e.preventDefault();
|
|
|
|
// Stash the event so it can be triggered later.
|
|
|
|
deferredPrompt = e;
|
|
|
|
// Update UI to notify the user they can add to home screen
|
|
|
|
addBtn.style.display = 'block';
|
|
|
|
|
|
|
|
addBtn.addEventListener('click', (e) => {
|
|
|
|
// hide our user interface that shows our A2HS button
|
|
|
|
addBtn.style.display = 'none';
|
|
|
|
// Show the prompt
|
|
|
|
deferredPrompt.prompt();
|
|
|
|
// Wait for the user to respond to the prompt
|
|
|
|
deferredPrompt.userChoice.then((choiceResult) => {
|
|
|
|
if (choiceResult.outcome === 'accepted') {
|
|
|
|
console.log('User accepted the A2HS prompt');
|
|
|
|
} else {
|
|
|
|
console.log('User dismissed the A2HS prompt');
|
|
|
|
}
|
|
|
|
deferredPrompt = null;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% block outer_content %}
|
|
|
|
{% endblock %}
|
|
|
|
<section class="section">
|
|
|
|
<div class="container">
|
2022-11-28 19:45:22 +00:00
|
|
|
{% block content_wrapper %}
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
2022-10-13 14:26:43 +00:00
|
|
|
{% endblock %}
|
2022-10-14 06:20:30 +00:00
|
|
|
<div id="modals-here">
|
|
|
|
</div>
|
2022-10-16 13:14:53 +00:00
|
|
|
<div id="windows-here">
|
2022-10-14 06:20:30 +00:00
|
|
|
</div>
|
|
|
|
<div id="widgets-here" style="display: none;">
|
|
|
|
</div>
|
2022-10-13 14:26:43 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|