add backend

This commit is contained in:
Philipp Rothmann 2022-10-21 12:44:04 +02:00
parent 0bff1d8645
commit 07a2c46227
89 changed files with 26502 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{% extends 'base.html' %}
{% block content %}
<script>
var api_url = '{{ api_url }}';
// Actions
$(document).ready(function() {
flow_settings();
});
</script>
<h2>Error: {{ error_message['error']['status'] }}</h2>
<div class=error-div>
{{ error_message['error']['message'] }}
{{ error_message['error']['reason'] }}
</div>
{% endblock %}