diff options
author | pb1dft <pb1dft@ampache> | 2006-10-02 21:17:14 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2006-10-02 21:17:14 +0000 |
commit | 6de6f894275ed0f31b9a18f4ff21f983ee22600b (patch) | |
tree | e3d08b06337b12e07ad3f976dc94c414527d5bcc /templates/show_mail_users.inc.php | |
parent | a8a0dc224e1889f70873287caf0b4a00a278303f (diff) | |
download | ampache-6de6f894275ed0f31b9a18f4ff21f983ee22600b.tar.gz ampache-6de6f894275ed0f31b9a18f4ff21f983ee22600b.tar.bz2 ampache-6de6f894275ed0f31b9a18f4ff21f983ee22600b.zip |
Added Some extra Mail Functions
Diffstat (limited to 'templates/show_mail_users.inc.php')
-rw-r--r-- | templates/show_mail_users.inc.php | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/templates/show_mail_users.inc.php b/templates/show_mail_users.inc.php index 54f0020b..1315ca86 100644 --- a/templates/show_mail_users.inc.php +++ b/templates/show_mail_users.inc.php @@ -34,10 +34,48 @@ </select> </td> </tr> + <tr> + <td colspan="2"> + <table> + <tr> + <td><?php echo _('Catalog Statistics'); ?>:</td> + <td> + <input type="checkbox" name="cat_stats" value="yes"> + </td> + <td><?php echo _('Most Popular Albums'); ?>:</td> + <td> + <input type="checkbox" name="pop_albums" value="yes"> + </td> + </tr> + + <tr> + <td><?php echo _('Newest Artist Additions'); ?>:</td> + <td> + <input type="checkbox" name="new_artists" value="yes"> + </td> + <td><?php echo _('Most Popular Artists'); ?>:</td> + <td> + <input type="checkbox" name="pop_artists" value="yes"> + </td> + </tr> + + <tr> + <td><?php echo _('Newest Album Additions'); ?>:</td> + <td> + <input type="checkbox" name="new_albums" value="yes"> + </td> + <td><?php echo _('Most Popular Songs'); ?>:</td> + <td> + <input type="checkbox" name="pop_songs" value="yes"> + </td> + </tr> + </table> + </td> + <tr> <tr> <td><?php echo _('Subject'); ?>:</td> - <td> + <td colspan="3"> <input name="subject" value="<?php echo scrub_out($_POST['subject']); ?>" size="50"></input> </td> </tr> |