Skip to content

Commit

Permalink
templates
Browse files Browse the repository at this point in the history
  • Loading branch information
kdudkov committed Jan 10, 2025
1 parent 2ecc131 commit c4dcd14
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/goatak_server/templates/missions.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@
<tr v-for="c in all_missions" @click="current = c">
<td>{{ c.name }}</td>
<td>{{ c.scope }}</td>
<td>{{ c.creatorUID }}</td>
<td>{{ c.creatorUid }}</td>
</tr>
</table>
</div>
<div class="col-6">
<div v-if="current != null" class="overflow-auto">
<h3>{{ current.name }}</h3>
creator: {{ current.creator }} uid {{ current.creatorUID }}
creator: {{ current.creatorUid }}<br/>
description: {{ current.description }}

<div v-if="current.uids && current.uids.length > 0">
<h5>Points</h5>
Expand Down

0 comments on commit c4dcd14

Please sign in to comment.