44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
@model Church.Net.Entity.Vocabulary
|
|
|
|
@{
|
|
ViewBag.title = "Visualize";
|
|
}
|
|
|
|
|
|
<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-default" onclick="location.href='@Url.Action("VisualizeNext", "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','@Url.Action("VisualizeNext", "Vocabularies", new { id = Model.Id })');
|
|
})
|
|
|
|
</script>
|
|
} |