summaryrefslogtreecommitdiffstats
path: root/app/view
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2018-10-22 05:08:37 -0400
committerMalf Furious <m@lfurio.us>2018-10-22 05:08:37 -0400
commit325b697fed92cb56eaa05841e03462b7b2f0c385 (patch)
tree9705c6f84de936c82ee7fead97fae1aa53f0a3e4 /app/view
parent9f0045366490199d2fcd562f8ddc4fc3503b3126 (diff)
downloadscrott-325b697fed92cb56eaa05841e03462b7b2f0c385.tar.gz
scrott-325b697fed92cb56eaa05841e03462b7b2f0c385.zip
pad: Render issue modals on pad view
This logic instanciates an issue modal view for each issue to be accessable from a pad view.
Diffstat (limited to 'app/view')
-rw-r--r--app/view/pad.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/view/pad.php b/app/view/pad.php
index cc857f6..c9f30fc 100644
--- a/app/view/pad.php
+++ b/app/view/pad.php
@@ -15,6 +15,7 @@
require_once "model/pad.php";
require_once "view/stdpage.php";
require_once "view/datalsts.php";
+require_once "view/issue.php";
?>
@@ -26,6 +27,10 @@ require_once "view/datalsts.php";
</head>
<body>
+ <?php foreach ($issues as $i) { ?>
+ <?=issue_v\issue($i)?>
+ <?php } ?>
+
<?=stdpage\top()?>
<?=stdpage\nav()?>