@if (campaign) {
@if (!editing) {

{{ campaign.name }}

{{ campaign.description }}

{{ campaign.playerCount || 0 }} joueurs @if (linkedLore) { {{ linkedLore.name }} } @if (campaign.loreId && !linkedLore) { Univers introuvable }
} @if (editing) {
@if (!creatingGameSystem) { } @if (creatingGameSystem) {
}
} @if (!editing) {

Personnages

Personnages non-joueurs @if (npcs.length > 0) { {{ npcs.length }} }

@if (npcs.length > 0) {
@for (npc of npcs; track npc) {
{{ npc.name }} {{ personaSnippet(npc) }}
}
} @if (npcs.length === 0) {

Aucun PNJ pour le moment.

}
} @if (!editing) {

Arcs narratifs

@if (arcs.length > 0) {
@for (arc of arcs; track arc) {
{{ arc.name }} {{ chapterCountByArc[arc.id!] || 0 }} chapitres
}
} @if (arcs.length === 0) {

Aucun arc narratif pour le moment.

}
} @if (!editing) {

Mes parties

@if (playthroughs.length > 0) {
@for (p of playthroughs; track p) {
{{ p.name }} @if (p.description) { {{ p.description }} }
}
} @if (playthroughs.length === 0) {

Aucune partie. Créez-en une pour démarrer une session avec une table.

}
}
}