chiark / gitweb /
wip
[nj-awaymsg.git] / mason / main
index e8c29e6fd7c864ec49941a2fc02e56d33ad10162..42cfaac56e48329390f41856deb226eb73c93593 100755 (executable)
@@ -4,16 +4,16 @@ db_connect();
 my ($sth,$row,$sthi,$rowi);
 </%init>
 <html lang="en"><head>
-<title>Email "out of office" setup</title>
+<title>Email away message setup</title>
 </head><body>
-<h1>Email "out of office" setup</h1>
+<h1>Email away message setup</h1>
 
 <h2>Email addresses and their configuration</h2>
 <%perl>
 $sth = $dbh->prepare(<<END);
     SELECT *
-     FROM        addresses
-       LEFT JOIN config    USING (emailaddr)
+     FROM        config
+       LEFT JOIN addresses USING (emailaddr)
        LEFT JOIN texts     USING (textid)
      ORDER BY emailaddr
 END
@@ -24,29 +24,22 @@ $sth->execute();
 <td>Address</td>
 <td>Status</td>
 <td>Which message?</td>
-<td>Expiry date</td>
 </tr><tr>
 % while (my $row= $sth->fetchrow_hashref()) {
 <tr>
 <td><% $row->{'emailaddr'} |h %></td>
 %     if (defined $row->{'textid'}) {
-%         my $expires = expires2timet($row->{'expires'});
-%        if (defined($expires) && $expires < time) {
-<td>expired</td>
-%         } else {
 <td>active</td>
-%         }
 <td><% $row->{'desc'} |h %></td>
-<td><% expirestime2show($expires) |h %></td>
 %     } else {
 <td>inactive</td>
 <td></td>
-<td></td>
 %     }
 </tr>
 % }
 </table>
 
+<hr>
 <h2>Outbound messages</h2>
 <%perl>
 $sth = $dbh->prepare("SELECT * FROM texts ORDER BY desc");
@@ -58,17 +51,24 @@ END
 $sth->execute();
 </%perl>
 % while (my $row= $sth->fetchrow_hashref()) {
+<form action="edit" method="get">
 <h3>Message "<% $row->{'desc'} |h %>"</h3>
-<table>
-<tr><td>Short name:</td><td><% $row->{'desc'} |h %></td></tr>
-<tr><td>Expires:</td><td><%
-  expirestime2show(expires2timet($row->{'expires'}))
-                                              |h %></td></tr>
-<tr><td>Subject:</td>
-  <td><code><% $row->{'subject'} |h %></code></td></tr>
-</table>
-<p>
+
+<&| txtable, tx => $row &>
+%    $sthi->execute($row->{'textid'});
+%    while (my $rowi= $sthi->fetchrow_hashref()) {
+<tr><td>Used for:</td><td><% $rowi->{'emailaddr'} |h %></td></tr>
+%    }
+</&>
 <pre>
 <% $row->{'text'} |h %>
 </pre>
+
+<input type="submit" name="t<% $row->{'textid'} %>"
+   value="Edit or configure this message">
+<hr>
 % }
+<h3>Add new message</h3>
+<input type="submit" name="create"
+   value="Start adding new message">
+</form>