<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Views/Shared/Site.Master" %> <%@ Import Namespace="Portoa.Web.Util" %> Submit New Quote

Submit New Quote

<%= Html.ValidationSummary() %> <% using (Html.BeginForm()) { %>

<%= Html.Label("Game", "GameId") %>
<%= Html.DropDownListFor(model => model.GameId, Model.GetGameList()) %>
Create new game

Create new game

<%= Html.LabelFor(model => model.GameName) %>
<%= Html.TextBoxFor(model => model.GameName) %>

<%= Html.LabelFor(model => model.GameWebsite) %> (link to Wikipedia page or something)
<%= Html.TextBoxFor(model => model.GameWebsite) %>

<%= Html.LabelFor(model => model.SystemIds) %>
<%= Model.MakeSystemTable(Html) %>
Create new system

Create new system

<%= Html.LabelFor(model => model.SystemName) %>
<%= Html.TextBoxFor(model => model.SystemName) %>

<%= Html.LabelFor(model => model.SystemAbbreviation) %>
<%= Html.TextBoxFor(model => model.SystemAbbreviation) %>

<%= Html.LabelFor(model => model.SystemReleaseDate) %>
<%= Html.TextBox("SystemReleaseDate", DateTime.UtcNow.ToString("yyyy-MM-dd")) %>

<%= Html.LabelFor(model => model.PublisherIds) %>
<%= Model.MakePublisherTable(Html) %>
Create new publisher

Create new publisher

<%= Html.LabelFor(model => model.PublisherName) %>
<%= Html.TextBoxFor(model => model.PublisherName) %>

<%= Html.LabelFor(model => model.PublisherWebsite) %>
<%= Html.TextBoxFor(model => model.PublisherWebsite) %>

<%= Html.LabelFor(model => model.QuoteText) %>
<%= Html.TextAreaFor(model => model.QuoteText) %>

<%= Html.Submit("Submit") %> <% } %>