issue: reply edit of page and announce columns
[minimedit.git] / issue / index.php
index df1aa6869c0511e57fafe1c7c3b5053cd3fbeac4..51d1de44e78e910b1cb278db55bccd8d8620f33a 100644 (file)
@@ -21,11 +21,18 @@ if ($id and ctype_digit($id)) {
                )->fetch();
                if (!$row) throw new Exception('Antwoordnummer niet gevonden');
 
-               print "<h2>{$Page->title}</h2>\n";
                printf('<form method="post" action="%s" enctype="multipart/form-data">',
                        $Page->handler
                );
+               print "<h2>{$Page->title}</h2>\n";
                printf('<input type="hidden" name="%s" value="%s" />'."\n", 'id', $row->id);
+               printf(
+                       '<input type="hidden" name="%s" value="" />'
+                       . '<input type="checkbox" id="%1$s" name="%1$s" value="1"%s />'
+                       . '<label for="%1$s"> %s</label>'."\n<p>",
+                       'announce', $row->announced ? ' checked' : '', 'Aangekondigd'
+               );
+               printf('<input type="text" name="%s" value="%s" /><p>'."\n", 'page', $row->page);
                printf('<textarea id="%s" name="%1$s" cols=60 rows=3>%s</textarea>'."\n",
                        'reply',
                        htmlspecialchars($row->raw)
@@ -111,8 +118,12 @@ ob_start();
 $stats = $Db->query(
        "SELECT count(*) AS total, count(closed) AS closed FROM issues"
 )->fetch();
-printf("<h4>%d lopende zaken, %s opgelost</h4>\n",
-       $stats->total - $stats->closed, $stats->closed
+printf("<h4>%s, %s opgelost</h4>\n",
+       showlink(
+               sprintf('%d lopende zaken', $stats->total - $stats->closed),
+               isset($_GET['open']) ? FALSE : '?open'
+       ),
+       $stats->closed
 );
 print '<ul>';
 while ($row = $query->fetch()) {