Update of /cvsroot/phpwebsite-comm/modules/mailinglists/templates/email
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11197/templates/email
Modified Files:
edit.tpl send_html.tpl view.tpl
Log Message:
File Cabinet added to email forms for HTML messages.
Index: view.tpl
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/templates/email/view.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** view.tpl 2 Jan 2008 21:59:35 -0000 1.1
--- view.tpl 23 Aug 2008 17:03:19 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
<h1>{SUBJECT}</h1>
+
+ <!-- BEGIN file --><div style="float : right">{FILE}</div><!-- END file -->
{MESSAGE}
Index: edit.tpl
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/templates/email/edit.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** edit.tpl 2 Jan 2008 21:59:35 -0000 1.1
--- edit.tpl 23 Aug 2008 17:03:19 -0000 1.2
***************
*** 4,16 ****
<div class="padded">{OPTIONS}</div>
<!-- END email-options -->
<div class="padded">
{SUBJECT_LABEL}<br />{SUBJECT}
! <!-- BEGIN subject-error --><div class="mailinglists-error">{SUBJECT_ERROR}</div><!-- END subject-error -->
</div>
! <div class="padded">{MSG_HTML_LABEL}<br />{MSG_HTML}</div>
<!-- BEGIN body-error -->
! <div class="padded"><div class="mailinglists-error">{BODY_ERROR}</div></div>
<!-- END body-error -->
! <div class="padded">{MSG_TEXT_LABEL}<br />{MSG_TEXT}</div>
<div class="padded">{SUBMIT}</div>
</div>
--- 4,26 ----
<div class="padded">{OPTIONS}</div>
<!-- END email-options -->
+
<div class="padded">
{SUBJECT_LABEL}<br />{SUBJECT}
! <!-- BEGIN subject-error --><div class="error">{SUBJECT_ERROR}</div><!-- END subject-error -->
</div>
!
! <fieldset><legend><strong>{HTML_EMAIL_LEGEND}</strong></legend>
! <div class="padded">{MSG_HTML}</div>
! <div class="padded">{FILE_MANAGER}</div>
! </fieldset>
!
<!-- BEGIN body-error -->
! <div class="padded"><div class="error">{BODY_ERROR}</div></div>
<!-- END body-error -->
!
! <fieldset><legend><strong>{TEXT_EMAIL_LEGEND}</strong></legend>
! <div class="padded">{MSG_TEXT}</div>
! </fieldset>
!
<div class="padded">{SUBMIT}</div>
</div>
Index: send_html.tpl
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/mailinglists/templates/email/send_html.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** send_html.tpl 23 Aug 2008 02:55:15 -0000 1.1
--- send_html.tpl 23 Aug 2008 17:03:19 -0000 1.2
***************
*** 1,2 ****
--- 1,6 ----
+ <html>
+ <body>
+ <!-- BEGIN file --><div style="float : right">{FILE}</div><!-- END file -->
+
{MESSAGE}
***************
*** 4,6 ****
<hr />
{FOOTER}
! <!-- END footer -->
\ No newline at end of file
--- 8,13 ----
<hr />
{FOOTER}
! <!-- END footer -->
!
! </body>
! </html>
\ No newline at end of file
|