aboutsummaryrefslogblamecommitdiffstats
path: root/src/views/draft.mustache
blob: a7e52e823f541e7c56ee64c418350c295c28f0e1 (plain) (tree)


























                                                                                   
<div hx-get="/drafts/{{draft_id}}" hx-trigger="every 1s">
    <strong>{{user.id}}</strong>
<!-- <div hx-get="/drafts/{{draft_info.draft_id}}"> -->
{{#draft_info}}
<h1>{{league}}</h1>
<div class="sticky">
    <p>{{message}}</p>
    {{#can_pick}}<p>Round Time Remaining: {{round_time_remaining}}</p>{{/can_pick}}
</div>
{{/draft_info}}
    <table class="striped">
        <thead>
            <tr>
                <th>Team</th>
                <th>Division</th>
                <th colspan="2">Rank</th>
            </tr>
        </thead>
        <tbody>
        {{#teams}}
            <tr id="team-{{team_id}}">
            {{> pick}}
            </tr>
        {{/teams}}
        </tbody>
    </table>
</div>