ui: Display score grid in team page
Some checks are pending
continuous-integration/drone/push Build is running
Some checks are pending
continuous-integration/drone/push Build is running
This commit is contained in:
parent
46d1bb21f7
commit
39acdee6b2
5 changed files with 114 additions and 0 deletions
|
|
@ -13,12 +13,14 @@
|
|||
Alert,
|
||||
Badge,
|
||||
Card,
|
||||
CardHeader,
|
||||
Col,
|
||||
Container,
|
||||
Icon,
|
||||
Row,
|
||||
} from 'sveltestrap';
|
||||
|
||||
import ScoreGrid from '../components/ScoreGrid.svelte';
|
||||
import TeamChangeName from '../components/TeamChangeName.svelte';
|
||||
import TeamMembers from '../components/TeamMembers.svelte';
|
||||
|
||||
|
|
@ -45,6 +47,13 @@
|
|||
{/if}
|
||||
</Col>
|
||||
<Col md>
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<Icon name="table" />
|
||||
Détail du score
|
||||
</CardHeader>
|
||||
<ScoreGrid />
|
||||
</Card>
|
||||
<!--BrowserNotify /-->
|
||||
</Col>
|
||||
</Row>
|
||||
|
|
|
|||
Reference in a new issue