2022-09-08 08:04:32 -07:00

47 lines
1.2 KiB
Plaintext

@model Church.Net.Entity.Vocabulary
@{
ViewBag.title = "Review";
}
<div class="g-bg-img-hero g-bg-pos-top-center g-pos-rel g-z-index-1 g-mt-minus-100" style="background-image: url(/Images/svg/svg-bg5.svg);">
<div class="container g-pt-150 g-pb-30">
<div class="row center">
@Html.Partial("~/Areas/English/Views/Shared/_SpellPractice.cshtml", Model)
</div>
<div class="form-group" id="divNextQuiz" style="display:none">
<div class="col-md-offset-2 col-md-10">
<input type="button" value="Next" class="btn btn-success" onclick="location.href='@Url.Action("ReviewNext", "Vocabularies",new { id=Model.Id})'" />
<input type="button" value="Practice Again" class="btn btn-danger" onclick="location.href='@Url.Action("ReviewRepracticeNext", "Vocabularies",new { id=Model.Id})'" />
@*<input type="submit" value="Next" class="btn btn-default" />*@
</div>
</div>
</div>
<div>
@Html.ActionLink("Back to List", "Index")
</div>
</div>
@section scripts{
<script>
$(function(){
SetUpSpellingQuitze('@Model.Word','divNextQuiz');
})
</script>
}