trello-sprinter
Version:
Provides summarizations of sprint activity in a Trello project
23 lines (21 loc) • 819 B
HTML
<html><head><meta http-equiv="Content-type" content="text/html; charset=utf-8"/><title>Trello Sprinter</title><style>table {
margin: 1em auto;
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
padding: 0 5px;
}</style><script defer="defer" src="trello-sprinter.min.js"></script></head><body><div id="trello"></div><script>let trello = new TrelloSprinter({
sel: '#trello',
key: "d25bd9e3e273f0dd18c4e8d406b98035",
board: 'Brad',
views: {
'board': {},
'sprint': {},
'sprintTable': {addHeadings: 10}
}
});
// var view = new TrelloLib.View({persist: false});
// view.attach(new TrelloLib.BoardView());
// view.attach(new TrelloLib.SprintView());
// view.fetch("#trel", "$teamname");</script></body></html>