29 lines
745 B
Plaintext
29 lines
745 B
Plaintext
|
|
@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>
|