diff options
| author | mokhan <mokhan@da190166-9cfc-4ee1-ae03-434a172be219> | 2009-02-21 21:44:27 +0000 |
|---|---|---|
| committer | mokhan <mokhan@da190166-9cfc-4ee1-ae03-434a172be219> | 2009-02-21 21:44:27 +0000 |
| commit | 1dfdccb8118aeaa3cd844ac8de2a672c93312166 (patch) | |
| tree | 4b19e7f816ab1019f180a46b68572af4b66fe4bc /slips/src/app/Marina.Web.UI/AvailableSlips.aspx | |
| parent | 42d66bcab8262c7b8b2452615df535e694a3ec1c (diff) | |
git-svn-id: http://svn.xp-dev.com/svn/mokhan-sait@2 da190166-9cfc-4ee1-ae03-434a172be219
Diffstat (limited to 'slips/src/app/Marina.Web.UI/AvailableSlips.aspx')
| -rw-r--r-- | slips/src/app/Marina.Web.UI/AvailableSlips.aspx | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/slips/src/app/Marina.Web.UI/AvailableSlips.aspx b/slips/src/app/Marina.Web.UI/AvailableSlips.aspx new file mode 100644 index 0000000..b89697f --- /dev/null +++ b/slips/src/app/Marina.Web.UI/AvailableSlips.aspx @@ -0,0 +1,37 @@ +<%@ Page Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="AvailableSlips.aspx.cs" Inherits="Marina.Web.UI.AvailableSlips" Title="Untitled Page" %>
+<%@ Import namespace="Marina.Web.Views"%>
+
+<%@ Import namespace="Marina.Presentation"%>
+<%@ Import namespace="Marina.Presentation.DTO"%>
+<%@ Import namespace="Marina.Infrastructure"%>
+<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
+</asp:Content>
+<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" runat="server">
+<div>
+<h1>Available Slips</h1>
+<table>
+ <thead>
+ <tr>
+ <td>Location Name</td>
+ <td>Dock Name</td>
+ <td>Slip Width</td>
+ <td>Slip Length</td>
+ </tr>
+ </thead>
+ <tbody>
+ <% foreach ( SlipDisplayDTO item in ViewLuggage.ClaimFor(ViewLuggageTickets.AvailableSlips) ) {%>
+ <tr>
+ <td><%= item.LocationName %></td>
+ <td>
+ <a href='<%= WebViews.DockView.Name( ) %>?<%= PayloadKeys.DockId %>=<%= item.DockId %>'>
+ <%= item.DockName %>
+ </a>
+ </td>
+ <td><%= item.Width %></td>
+ <td><%= item.Length %></td>
+ </tr>
+ <% } %>
+ </tbody>
+</table>
+</div>
+</asp:Content>
|
