diff options
| author | Christian Fowler <spider@viovio.com> | 2006-10-07 05:18:56 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2006-10-07 05:18:56 +0000 |
| commit | 6c0ef4d4b60ce9edcd848743c1e4682f3ea6d3f4 (patch) | |
| tree | a943fec0f50924cf871a891daf3013dcce71b712 /templates/mail_queue.tpl | |
| parent | 487dbd3593443f0a35390b7a685864b1d7f7ce1e (diff) | |
| download | newsletters-6c0ef4d4b60ce9edcd848743c1e4682f3ea6d3f4.tar.gz newsletters-6c0ef4d4b60ce9edcd848743c1e4682f3ea6d3f4.tar.bz2 newsletters-6c0ef4d4b60ce9edcd848743c1e4682f3ea6d3f4.zip | |
major clean up to newsletter sending. everything pretty clean at this point. unsub needs work
Diffstat (limited to 'templates/mail_queue.tpl')
| -rw-r--r-- | templates/mail_queue.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/mail_queue.tpl b/templates/mail_queue.tpl index 9e06320..f7dc860 100644 --- a/templates/mail_queue.tpl +++ b/templates/mail_queue.tpl @@ -17,7 +17,7 @@ <td><a href="{$smarty.const.BIT_ROOT_URL}?content_id={$q.content_id}">{$q.title}</a></td> <td><a href="{$smarty.const.BIT_ROOT_URL}?content_id={$q.nl_content_id}">{$q.newsletter_title}</a></td> <td>{$q.queue_date|bit_short_datetime}</a></td> - <td>{$q.sent_date}</td> + <td>{if $q.sent_date}{$q.sent_date|bit_short_datetime}{/if}</td> <td><input type="checkbox" name="queue_id[]" value="{$qId}" /></td> </tr> {/foreach} @@ -27,10 +27,10 @@ <div style="float:right"> <div class="row"> With checked: - <select> + <select name="batch_command"> <option></option> - <option>{tr}Delete{/tr}</option> - <option>{tr}Send Immediately{/tr}</option> + <option value="delete">{tr}Delete{/tr}</option> + <option value="send">{tr}Send Immediately{/tr}</option> </select> </div> |
