Files
BeWoPlaner/BeWoPlanerMobil/Views/DebuggingTools/DebuggingTools.cshtml

29 lines
745 B
Plaintext
Raw Normal View History

@using BeWoPlanerMobil.Util
@model BeWoPlanerMobil.Models.DebuggingToolsModel
@{
if(TempData[TempDataConstants.DoLogoutKey] is bool doLogout && doLogout)
{
<text>
<script type="text/javascript">
$("#second-logout-form").submit();
</script>
</text>
}
}
<script type="text/javascript">
$(document).ready(function() {
$(".collapse").on("shown.bs.collapse", function() {
window.saveCollapsibleState($(this).attr("id"), "@Url.Action("SaveCollapsibleStatus")");
});
$(".collapse").on("hidden.bs.collapse", function() {
window.saveCollapsibleState($(this).attr("id"), "@Url.Action("SaveCollapsibleStatus")");
});
});
</script>
<div class="container lg-max-width">
Hier kommen nützliche Tools hin ...
</div>