world-game/site/plugins/csv-export/index.js
isUnknown effe6ec547
All checks were successful
Deploy Production / Deploy to Production (push) Successful in 21s
feat: add CSV export button in panel for contact database
- Plugin csv-export: authenticated route /wg-export/contacts generates
  CSV with UTF-8 BOM, semicolon separator, white-paper titles resolved
- Panel section with k-button wired to the route, index.css for spacing
- white-papers.yml dataTab converted to sections to host the custom section
- Filename format: YYMMDD-contacts.csv

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-01 14:00:23 +02:00

17 lines
355 B
JavaScript

panel.plugin("world-game/csv-export", {
sections: {
"csv-export": {
template: `
<k-button
icon="download"
text="Exporter en CSV"
variant="filled"
theme="positive"
link="/wg-export/contacts"
target="_blank"
class="csv-export-btn"
/>
`,
},
},
});