Using $SummaryByMonth (Month-%Y-%m.html.tmpl) I produce a monthly report in HTML format and to make it easier to view I would like a full list of all months in a drop down list on all reports.
Using #for $monthYear in $SummaryByMonth only gives a list up to the report date nothing beyond.
Using #for $year in $alltime.years
#for $mth in $year.months only populates the months in the year of the report.
$year in $alltime.years doesn't seem to work in $SummaryByMonth .
I can achieve this by manually adding a new month using <option value ="2020-05">2020-05</option> etc.
Is it possibly to populate a drop down list automatically.
Thanks Phil