home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / FAQ / cgi-bin / discus4_00 / source / contact1.tmpl < prev    next >
Text File  |  2009-11-06  |  3KB  |  85 lines

  1. # FILE: contact1.tmpl
  2. # DESCRIPTION: First "Contact Moderators" screen
  3. # Copyright (c) 2002, DiscusWare, LLC, all rights reserved
  4. # -------------------------------------------------------------------------------------------
  5. # Translation note: This file is drawn from language.conf and should not itself need
  6. # to be translated.
  7.  
  8. <!--BEGIN-->
  9. <html>
  10. <head>
  11. <title>$L{BCTITLE}</title>
  12. <style>
  13. <!--
  14. body { font-family: $color->{face}; line-spacing: 0 }
  15. -->
  16. </style>
  17. <#define $pagetitle = "$L{BCTITLE}"#>
  18. <#insert part () "cookie_icons_offset"#>
  19. <#insert part () "dynamic_top"#>
  20. <#if $browser->{dhtml} == 0#><font face="$color->{face}" size="$color->{size}">
  21.  
  22. <#if $#moderators > 0#>
  23.     <table border=0 cellspacing=0 cellpadding=1 bgcolor="#000000"><tr><td>
  24.     <table border=0 cellpadding=4 cellspacing=1>
  25.     <tr bgcolor="$color->{alt_1}">
  26.     <td><font size=1 face="$color->{face}" color="$color->{alt_2}"><b>$L{BC_MODERATOR_USERNAME}</b></font></td>
  27.     <td><font size=1 face="$color->{face}" color="$color->{alt_2}"><b>$L{BC_MODERATOR_NAME}</b></font></td>
  28.     <#if $GLOBAL_OPTIONS{contact_display_topics}#>
  29.         <td><font size=1 face="$color->{face}" color="$color->{alt_2}"><b>$L{BC_MODERATOR_TOPICS}</b></font></td>
  30.     <#endif#>
  31.     </tr>
  32.     
  33.     <#foreach $moderator (@moderators)#>
  34.         <tr>
  35.         <td nowrap valign=top bgcolor="$color->{alt_9}"><font face="$color->{face}" size="$color->{size}">\
  36.         <#if pro#>
  37.             <a target="_blank" href="$script_url/board-profile.$cgi_extension?action=view_profile&profile=$moderator->{user}-MODERATOR">\u$moderator->{user}</a>
  38.         <#else#>
  39.             <#if $moderator->{email} ne "" && $moderator->{email} ne "email"#>
  40.                 <a href="mailto:$moderator->{email}">\u$moderator->{user}</a>
  41.             <#else#>
  42.                 \u$moderator->{user}
  43.             <#endif#>
  44.         <#endif#>
  45.         </td>
  46.         <td nowrap valign=top bgcolor="$color->{alt_10}"><font face="$color->{face}" size="$color->{size}">\
  47.         <#if $moderator->{fullname} ne "" && $moderator->{fullname} ne "fullname"#>
  48.             $moderator->{fullname}
  49.         <#else#>
  50.             \u$moderator->{user}
  51.         <#endif#>
  52.         </td>
  53.         <#if $GLOBAL_OPTIONS{contact_display_topics}#>
  54.             <td valign=top bgcolor="$color->{alt_9}"><font face="$color->{face}" size="$color->{size}">\
  55.                 <#reference array @topics from $moderator->{topics}#>
  56.                 <#if $#topics > 0#>
  57.                     <#foreach $topic (@topics)#>
  58.                         - $topic->{name}<#if $topic->{_is_last_element} == 0#><br>
  59.                     <#endloop#>
  60.                 <#else#>
  61.                     $L{BC_MODERATOR_TOPICS_NONE}
  62.                 <#endif#>
  63.             </td>
  64.         <#endif#>
  65.         </tr>
  66.     <#endloop#>
  67.     </table></td></tr></table>
  68. <#endif#>
  69.  
  70. <p>
  71. $L{BCINSTR}
  72. <#if $GLOBAL_OPTIONS{contact_name} ne ""#>
  73.     <#if $GLOBAL_OPTIONS{admin_contact_email} ne ""#>
  74.         <a href="mailto:$GLOBAL_OPTIONS{contact_email}">$GLOBAL_OPTIONS{contact_name}</a>.
  75.     <#else#>
  76.         $GLOBAL_OPTIONS{contact_name}.
  77.     <#endif#>
  78. <#else#>
  79.     $contact.
  80. <#endif#>
  81. </p>
  82.  
  83. <#insert part () "dynamic_bottom"#>
  84. <!--END-->
  85.