mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
Fix styling
This commit is contained in:
parent
3f71f6a8d8
commit
cfa052fc31
@ -19,11 +19,13 @@
|
|||||||
}
|
}
|
||||||
</select>
|
</select>
|
||||||
<div id="recurringMultipleReminders" style="display:none;">
|
<div id="recurringMultipleReminders" style="display:none;">
|
||||||
@foreach (ReminderRecord reminderRecord in Model)
|
<ul class="list-group">
|
||||||
{
|
@foreach (ReminderRecord reminderRecord in Model)
|
||||||
<div>
|
{
|
||||||
<input class="form-check-input" type="checkbox" value="@reminderRecord.Id" id="recurringReminder_@reminderRecord.Id">
|
<li class="list-group-item text-start">
|
||||||
<label class="form-check-label" for="recurringReminder_@reminderRecord.Id">@reminderRecord.Description</label>
|
<input class="form-check-input" type="checkbox" value="@reminderRecord.Id" id="recurringReminder_@reminderRecord.Id">
|
||||||
</div>
|
<label class="form-check-label stretched-link" for="recurringReminder_@reminderRecord.Id">@reminderRecord.Description</label>
|
||||||
}
|
</li>
|
||||||
|
}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
Loading…
x
Reference in New Issue
Block a user