You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find myself usually executing this tiny JS snippet in the console just to have a printable version of the issues list:
$('.sidebar').remove();$('.col-user').remove();// Assignee not needed in this specific case, but this is optional (may be a configurable parameter?)$('.issue-list-container').css('margin-left','30px');$('.navbar').remove();$('.issues').css('margin-top','30px');$('.issue-filter-container').remove();$('.issue-group').css('page-break-inside','avoid');// Necessary in order to avoid page-break on issues group$('.page-footer').remove();
Having a feature like this inside CodeTree would be pretty useful to my team (@favoloso).
Something that I would appreciate:
Simple button just like Export CSV in the footer
Ability to show all issues in one page (pretty tedious to navigate pages just to print them..)
Configurable columns (i.e. Hide labels, show assignee)
Configurable word-wrap for issues title (especially, avoid having their name to float under the labels list)
The text was updated successfully, but these errors were encountered:
I find myself usually executing this tiny JS snippet in the console just
to have a printable version of the issues list:
$('.sidebar').remove();$('.col-user').remove(); // Assignee not needed in this specific case, but this is optional (may be a configurable parameter?)$('.issue-list-container').css('margin-left', '30px');$('.navbar').remove();$('.issues').css('margin-top', '30px');$('.issue-filter-container').remove();$('.issue-group').css('page-break-inside', 'avoid'); // Necessary in order to avoid page-break on issues group$('.page-footer').remove();
I use them in order to archive productivity roadmaps and their evolution between sprints. This let me communicate with client manager & stakeholders effectively. Printing the plan let me archive it and share it easily during meetings.
I usually print exclusively the List View. The Kanban View is extremely useful in its digital form, and usually isn't shared with anyone external from the dev group.
I print them in A4 (europe, yep), but the print preview I get after executing the snippet I provided is usually perfect from my needs.
I find myself usually executing this tiny JS snippet in the console just to have a printable version of the issues list:
Having a feature like this inside CodeTree would be pretty useful to my team (@favoloso).
Something that I would appreciate:
The text was updated successfully, but these errors were encountered: