19 lines
399 B
HTML
19 lines
399 B
HTML
{% extends "torrent/layout.html" %}
|
|
{% load django_vite %}
|
|
|
|
{% block js %}
|
|
<script>
|
|
const current_user = {{ request.user.min_infos|safe }};
|
|
</script>
|
|
{% vite_asset "app/torrent.js" %}
|
|
|
|
<script>
|
|
function QWebInit(){
|
|
if(typeof(QWebChannel) !== 'undefined'){
|
|
new QWebChannel(qt.webChannelTransport, channel => {
|
|
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
{% endblock %} |