9 lines
321 B
HTML
9 lines
321 B
HTML
<h1>Draft Room: {{ league.name }} – {{ season.label }} {{ season.year }}</h1>
|
||
{% load static %}
|
||
<div id="draft-admin-app" data-draft-id="{{ draft_id_hashed }}"></div>
|
||
{% if DEBUG %}
|
||
<script src="http://localhost:3000/dist/bundle.js"></script>
|
||
{% else %}
|
||
<script src="{% static 'bundle.js' %}"></script>
|
||
{% endif %}
|