Moved api lines to fork with others features branches

Future freature (Search feature)
This commit is contained in:
RubenPX 2022-04-11 11:25:30 +02:00
parent 06456b352f
commit e7dbb34315
2 changed files with 10 additions and 7 deletions

View File

@ -220,4 +220,14 @@
</div>
</footer><!-- End Footer -->
<script>
const API_URLS = {
Auth_Token: `Basic ${btoa("{{ current_user.token }}:")}`, //
currentUserID: "{{ current_user.id }}",
lots: "{{ url_for('Lot.main') }}",
devices: "{{ url_for('Device.main') }}",
devices_modify: "{{ url_for('Lot.lot-device', id='UUID') }}",
}
</script>
{% endblock body %}

View File

@ -398,13 +398,6 @@
<!-- Custom Code -->
<script>
const table = new simpleDatatables.DataTable("table")
const API_URLS = {
Auth_Token: `Basic ${btoa("{{ current_user.token }}:")}`, //
currentUserID: "{{ current_user.id }}",
lots: "{{ url_for('Lot.main') }}",
devices: "{{ url_for('Device.main') }}",
devices_modify: "{{ url_for('Lot.lot-device', id='UUID') }}",
}
</script>
<script src="{{ url_for('static', filename='js/main_inventory.js') }}"></script>
{% endblock main %}