Last active
July 11, 2017 04:25
-
-
Save bendog/d0dc1de359225a261aa4e34e36cd4b00 to your computer and use it in GitHub Desktop.
Revisions
-
bendog revised this gist
Jul 11, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ ```jinja <select id="reportFileName"> {% for report in reports_list %} {% if report.year %} -
bendog renamed this gist
Jul 11, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
bendog revised this gist
Jul 11, 2017 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ ```jinja2 <select id="reportFileName"> {% for report in reports_list %} {% if report.year %} @@ -12,3 +13,4 @@ {% endif %} {% end for %} </select> ``` -
bendog created this gist
Jul 11, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ <select id="reportFileName"> {% for report in reports_list %} {% if report.year %} {% for year in years %} <option value="{{ report.id }}_{{ report.params }}_{{ year }}.html"> {{ report.name }} {{year}}</option> {% for month in months %} <option value="{{ report.id }}_{{ report.params }}_{{ year }}_{{ month}}.html"> {{ report.name }} {{year}} {{month}}</option> {% end for %} {% end for %} {% else %} <option value="{{ report.id }}_{{ report.params }}.html"> {{ report.name }}</option> {% endif %} {% end for %} </select>