1 {% extends "base.html" %}
12 grid-template-columns: 30% 70%;
25 box-shadow: 0 0 5px 2px #cccccc;
30 border-bottom: 1px solid #cccccc;
33 background-color: #ffffff;
37 background-color: #f3f3f3;
41 box-shadow: 0px 0 5px 2px #cccccc;
46 height: calc(100vh - 130px);
56 <div class="inbox-panel">
57 <div class="section-panel">
58 <div class="card-container">
59 {% for notification in notifier_messages %}
60 <div class="inbox-entry card" onclick="showmessage({{notification.id}}); setactive(this);">
66 <div class="iframe-panel inbox-expanded-view">
67 <div class="inbox-iframe-div">
68 <iframe id="inbox-iframe" src="notification/0" frameBorder="0" width="100%" height="100vh" scrolling="yes" onload="sizetoiframe(this);">Please select a notification</iframe>
73 <script type="text/javascript">
74 $('#inbox-iframe').load(function() {
78 function showmessage(msg_id)
80 iframe = document.getElementById("inbox-iframe");
81 iframe.src = "notification/" + msg_id;