diff options
author | erik%dasbistro.com <> | 2005-02-19 06:41:09 +0000 |
---|---|---|
committer | erik%dasbistro.com <> | 2005-02-19 06:41:09 +0000 |
commit | cc73e8e4f6726abd0421c78445b18bd21b28169e (patch) | |
tree | 4cb7bf4e825e06346250e9b6aa8f5dbd76df5ae3 /template/en/default | |
parent | 1ab7c9d7a1495c0f95e6e8ae12249a7ccb3c1465 (diff) | |
download | bugs-cc73e8e4f6726abd0421c78445b18bd21b28169e.tar bugs-cc73e8e4f6726abd0421c78445b18bd21b28169e.tar.gz bugs-cc73e8e4f6726abd0421c78445b18bd21b28169e.tar.bz2 bugs-cc73e8e4f6726abd0421c78445b18bd21b28169e.tar.xz bugs-cc73e8e4f6726abd0421c78445b18bd21b28169e.zip |
Bug 253721: Add group-based lists to whining
Patch by Erik Stambaugh <erik@dasbistro.com>
r=joel, r,a=justdave
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/whine/schedule.html.tmpl | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/template/en/default/whine/schedule.html.tmpl b/template/en/default/whine/schedule.html.tmpl index 60c0f3cd8..f227987d6 100644 --- a/template/en/default/whine/schedule.html.tmpl +++ b/template/en/default/whine/schedule.html.tmpl @@ -25,7 +25,8 @@ # schedule: array of hashes containing schedule info: # day: value in day column # time: value selected in time column - # mailto: recipient's email address + # mailto_type: 0=user 1=group + # mailto: recipient's id (profile or group) # queries: as with schedule, an anonymous array containing hashes of: # name: the named query's name # title: title to be displayed on the results @@ -158,6 +159,16 @@ </td> <td align="left"> [% IF mail_others %] + <input type="hidden" name="orig_mailto_type_[% schedule.id %]" + value="[% schedule.mailto_type FILTER html %]"> + <select name="mailto_type_[% schedule.id %]"> + <option value="0" [% IF schedule.mailto_type == 0 %] + selected + [% END %]>User</option> + <option value="1" [% IF schedule.mailto_type == 1 %] + selected + [% END %]>Group</option> + </select> <input type="hidden" name="orig_mailto_[% schedule.id %]" value="[% schedule.mailto FILTER html %]"> <input type="text" name="mailto_[% schedule.id %]" |