mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 17:22:15 +00:00
fix createcontest a bit
This commit is contained in:
parent
e37b3223db
commit
3aab388ce1
1 changed files with 5 additions and 3 deletions
|
@ -25,12 +25,14 @@
|
|||
<dd>@Html.TextAreaFor(Model => Model.Description, new { @class = "form-control" })</dd>
|
||||
<dt>Video ID:</dt>
|
||||
<dd>If you have posted a YouTube video for this contest, paste its ID here. @Html.TextBoxFor(Model => Model.VideoId, new { @class = "form-control" })</dd>
|
||||
<dt>End date:</dt>
|
||||
<dd>@Html.EditorFor(Model=>Model.EndDate, new { id = "enddate" })</dd>
|
||||
<dt>Gold reward:</dt>
|
||||
<dd>@Html.EditorFor(Model => Model.GoldReward, new { @class = "form-control" })</dd>
|
||||
<dd>@Html.TextBoxFor(Model => Model.GoldReward, new { @class = "form-control" })</dd>
|
||||
<dt>Silver reward:</dt>
|
||||
<dd>@Html.EditorFor(Model => Model.SilverReward, new { @class = "form-control" })</dd>
|
||||
<dd>@Html.TextBoxFor(Model => Model.SilverReward, new { @class = "form-control" })</dd>
|
||||
<dt>Bronze reward:</dt>
|
||||
<dd>@Html.EditorFor(Model => Model.BronzeReward, new { @class = "form-control" })</dd>
|
||||
<dd>@Html.TextBoxFor(Model => Model.BronzeReward, new { @class = "form-control" })</dd>
|
||||
</dl>
|
||||
|
||||
<hr/>
|
||||
|
|
Loading…
Reference in a new issue