(async function(){
const items = await SSAPI.get('/tournaments/upcoming').catch(()=>[]);
const el = document.getElementById('list');
el.innerHTML = items.map(t=>`
${t.name}
${t.location || ''}
${t.start_date} → ${t.end_date}
`).join('') || '
Aucun événement à venir
'; })();