Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions ResourceInformationV2/Components/Pages/Event/Detail.razor
Original file line number Diff line number Diff line change
Expand Up @@ -11,38 +11,38 @@
@if (Item != null) {
<ilw-content>
<div class="ils-input-entry">
<label for="title">Start Date / Time</label>
<input id="title" type="datetime-local" @bind="Item.StartDate" class="ils-input-long" @bind:after="Layout.SetDirty" />
<label for="startdate">Start Date / Time</label>
<input id="startdate" type="datetime-local" @bind="Item.StartDate" class="ils-input-long" @bind:after="Layout.SetDirty" />
</div>
</ilw-content>
<ilw-content>
<div class="ils-input-entry">
<label for="title">End Date / Time</label>
<input id="title" type="datetime-local" @bind="Item.EndDate" class="ils-input-long" @bind:after="Layout.SetDirty" />
<label for="enddate">End Date / Time</label>
<input id="enddate" type="datetime-local" @bind="Item.EndDate" class="ils-input-long" @bind:after="Layout.SetDirty" />
</div>
</ilw-content>
<ilw-content>
<div class="ils-input-entry">
<label for="title">Is this an all-day event?</label>
<input id="title" type="checkbox" @bind="Item.IsAllDay" class="ils-input-long" @bind:after="Layout.SetDirty" />
<label for="allday">Is this an all-day event?</label>
<input id="allday" type="checkbox" @bind="Item.IsAllDay" class="ils-input-long" @bind:after="Layout.SetDirty" />
</div>
</ilw-content>
<ilw-content>
<div class="ils-input-entry">
<label for="title">Location</label>
<input id="title" type="text" @bind="Item.Location" class="ils-input-long" @bind:after="Layout.SetDirty" />
<label for="location">Location</label>
<input id="location" type="text" @bind="Item.Location" class="ils-input-long" @bind:after="Layout.SetDirty" />
</div>
</ilw-content>
<ilw-content>
<div class="ils-input-entry">
<label for="title">Speakers</label>
<input id="title" type="text" @bind="SpeakerList" class="ils-input-long" @bind:after="Layout.SetDirty" />
<label for="speakers">Speakers</label>
<input id="speakers" type="text" @bind="SpeakerList" class="ils-input-long" @bind:after="Layout.SetDirty" />
</div>
</ilw-content>
<ilw-content>
<div class="ils-input-entry">
<label for="title">Sponsor</label>
<input id="title" type="text" @bind="Item.Sponsor" class="ils-input-long" @bind:after="Layout.SetDirty" />
<label for="sponsor">Sponsor</label>
<input id="sponsor" type="text" @bind="Item.Sponsor" class="ils-input-long" @bind:after="Layout.SetDirty" />
</div>
</ilw-content>

Expand Down
Loading