]> git.wh0rd.org - tt-rss.git/blob - lib/dijit/templates/Calendar.html
upgrade dojo to 1.8.3 (refs #570)
[tt-rss.git] / lib / dijit / templates / Calendar.html
1 <table cellspacing="0" cellpadding="0" class="dijitCalendarContainer" role="grid" aria-labelledby="${id}_mddb ${id}_year">
2 <thead>
3 <tr class="dijitReset dijitCalendarMonthContainer" valign="top">
4 <th class='dijitReset dijitCalendarArrow' data-dojo-attach-point="decrementMonth">
5 <img src="${_blankGif}" alt="" class="dijitCalendarIncrementControl dijitCalendarDecrease" role="presentation"/>
6 <span data-dojo-attach-point="decreaseArrowNode" class="dijitA11ySideArrow">-</span>
7 </th>
8 <th class='dijitReset' colspan="5">
9 <div data-dojo-attach-point="monthNode">
10 </div>
11 </th>
12 <th class='dijitReset dijitCalendarArrow' data-dojo-attach-point="incrementMonth">
13 <img src="${_blankGif}" alt="" class="dijitCalendarIncrementControl dijitCalendarIncrease" role="presentation"/>
14 <span data-dojo-attach-point="increaseArrowNode" class="dijitA11ySideArrow">+</span>
15 </th>
16 </tr>
17 <tr role="row">
18 ${!dayCellsHtml}
19 </tr>
20 </thead>
21 <tbody data-dojo-attach-point="dateRowsNode" data-dojo-attach-event="onclick: _onDayClick" class="dijitReset dijitCalendarBodyContainer">
22 ${!dateRowsHtml}
23 </tbody>
24 <tfoot class="dijitReset dijitCalendarYearContainer">
25 <tr>
26 <td class='dijitReset' valign="top" colspan="7" role="presentation">
27 <div class="dijitCalendarYearLabel">
28 <span data-dojo-attach-point="previousYearLabelNode" class="dijitInline dijitCalendarPreviousYear" role="button"></span>
29 <span data-dojo-attach-point="currentYearLabelNode" class="dijitInline dijitCalendarSelectedYear" role="button" id="${id}_year"></span>
30 <span data-dojo-attach-point="nextYearLabelNode" class="dijitInline dijitCalendarNextYear" role="button"></span>
31 </div>
32 </td>
33 </tr>
34 </tfoot>
35 </table>