Changeset 1155
- Timestamp:
- 2009-03-20 15:42:41 (4 years ago)
- Location:
- tupper/trunk/tupper-site/src/main/kauri
- Files:
-
- 2 added
- 2 edited
-
pages/time..xml (modified) (1 diff)
-
static/css/time.css (modified) (3 diffs)
-
static/img/copy.png (added)
-
static/img/delete.png (added)
Legend:
- Unmodified
- Added
- Removed
-
tupper/trunk/tupper-site/src/main/kauri/pages/time..xml
r1152 r1155 57 57 <table> 58 58 <thead> 59 <td >Customer</td><td>Project</td><td>Taak</td><td>Mo</td><td>Tu</td><td>We</td><td>Th</td><td>Fr</td><td>Sa</td><td>Su</td><td>Comment</td><td colspan="2"></td>59 <td colspan="2">Customer</td><td>Project</td><td>Taak</td><td>Mo</td><td>Tu</td><td>We</td><td>Th</td><td>Fr</td><td>Sa</td><td>Su</td><td colspan="3">Comment</td> 60 60 </thead> 61 61 <t:forEach var="preformance" in="${preformances}"> 62 62 <tr> 63 <td class="arrow"><a href="#">>></a></td> 63 64 <td>${preformance.customer}</td> 64 65 <td>${preformance.project}</td> 65 <td> <a href="#">${preformance.task}</a></td>66 <td>${preformance.task}</td> 66 67 <t:forEach var="day_time" in="${preformance.time}"> 67 <td >${day_time}</td>68 <td class="table_input_time" ><input type="text" value="${day_time}"/></td> 68 69 </t:forEach> 69 <td >${preformance.comment}</td>70 <td >copy</td>71 <td >delete</td>70 <td class="table_input_comment"><input type="text" value="${preformance.comment}"/></td> 71 <td class="action"><img src="${publicUri('service:/main/static/img/copy.png')}"/></td> 72 <td class="action"><img src="${publicUri('service:/main/static/img/delete.png')}"/></td> 72 73 </tr> 73 74 </t:forEach> -
tupper/trunk/tupper-site/src/main/kauri/static/css/time.css
r1152 r1155 1 #row1{ 2 height: 300px; 3 } 1 4 thead{ 2 5 color: #1c94c4; … … 5 8 6 9 #weeks{ 7 margin:20px; 8 width: 400px; 10 float: left; 11 margin: 20px; 12 width: 300px; 9 13 } 10 14 … … 14 18 border-style: solid; 15 19 border-color: #cccccc; 20 padding: 2px; 21 height: 25px; 16 22 } 17 23 #details_week{ 18 margin:20px; 19 width: 800px; 24 float: left; 25 margin: 20px; 26 width: 898px; 20 27 } 28 29 #details_week table td{ 30 text-align: center; 31 border-width: 1px; 32 border-style: solid; 33 border-color: #cccccc; 34 padding: 2px; 35 margin:0px; 36 } 37 .action{ 38 width: 10px; 39 } 40 41 .table_input_time{ 42 width: 40px; 43 } 44 45 .table_input_time input{ 46 width: 20px; 47 text-align:center; 48 padding=0px; 49 } 50 51 .table_input_comment{ 52 width: 250px; 53 } 54 .table_input_comment input{ 55 width: 240px; 56 padding:0px; 57 } 58 59 .arrow{ 60 width: 10px; 61 } 21 62 22 63 /*pure makup -- will later be javascript*/
Note: See TracChangeset
for help on using the changeset viewer.