source: indico/indico/MaKaC/webinterface/tpls/RoomBookingList.tpl @ a92d2a

burotelhello-world-walkthroughipv6v0.98-seriesv0.98.2v0.98.3v0.98b1v0.98b2v0.99v1.0v1.1
Last change on this file since a92d2a was a92d2a, checked in by Jose Benito <jose.benito.gonzalez@…>, 2 years ago

[FIX] Converted remaining %% symbols in templates

fixes 686

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[9033fd]1<script type="text/javascript">
2    isOver = false
[769dfd]3    function handleMouseOverResv( id ) {
[9033fd]4            if ( isOver ) return
5            isOver = true
6            resvTR = document.getElementById( id )
7            resvTR.bgColor = '#f0f0f0'
8    }
9    function handleMouseOutResv( id ) {
10        isOver = false
11        resvTR = document.getElementById( id )
12        resvTR.bgColor = ''
13    }
14</script>
15
[a92d2a]16<table width="80%" class="filesTab">
[9033fd]17<tr>
18<td>
19        <table>
20                <tr>
21                        <td class="groupTitle">
22                                 <%= _("Existing bookings")%>
23                        </td>
24                </tr>
25                <tr>
26                        <td style="white-space: nowrap;">
27                                <table>
28                                        <tr>
29                                          <td class="dataCaptionFormat"><%= _("Photo")%></td>
30                                          <td class="dataCaptionFormat"><%= _("Room")%></td>
31                                          <td class="dataCaptionFormat"><%= _("Reason")%> /<br /><%= _("For whom")%></td>
32                          <td class="dataCaptionFormat">
[769dfd]33                            <%= _("Next")%> / <%= _("Period")%>
[9033fd]34                            <% inlineContextHelp( _("First line shows date of the <b>next repetition</b>.<br /><br /> Next lines show booking period, or just booking date for non-repeating bookings.") ) %>
35                          </td>
36                                          <td class="dataCaptionFormat"><%= _("Hours")%></td>
37                                          <td class="dataCaptionFormat"><%= _("Actions")%></td>
38                                        </tr>
39                                        <tr>
40                                                <td class="titleCellTD" colspan="10" style="height: 0px">&nbsp;</td>
41                                        </tr>
[769dfd]42                                        <%     includeTpl( 'RoomBookingListItem', unrolledReservations = reservations, withPhoto = True ) %>
[9033fd]43                                        <tr>
44                                                <td class="titleCellTD" colspan="10" style="height: 0px">&nbsp;</td>
45                                        </tr>
46                                </table>
47                                &nbsp;
48                        </td>
49                </tr>
50        </table>
51        <br />
52        <br />
53</td>
54</tr>
[a92d2a]55</table>
Note: See TracBrowser for help on using the repository browser.