## -*- coding: utf_8 -*- <% from fcp import connection from fcp import fcpdefs from fcutils import util from fcp import mlitem import os.path import urllib %> <%namespace name="fcnames" file="fcnames.html" import="renderFCNames"/> <% myMLItem = fcp.MyMLItem thisWebID = myMLItem.WebID() jsonStr = fcp.MeAsJSON((client.serverTZ,client.clientTZ)) fType,subject = fcp.GetEscapedFormField(fcpdefs.dSubject) if subject is None: subject = "" windowTitle ="" fType,envInfo = fcp.GetEscapedFormField(fcpdefs.dEnvInfo) if envInfo is None: dateSent = NTo = NCc = 0 else: dateSent,NTo,NCc = envInfo fwdNames = fcp.GetMsgNameList(fcpdefs.dFwdNames) fromNames = fcp.GetMsgNameList(fcpdefs.dFromName) if fwdNames and len(fwdNames) and fromNames: fromNames = fromNames + fwdNames numFromNames = len(fromNames) if fromNames else 0 toNames = fcp.GetMsgNameList(fcpdefs.dToName) numToNames = len(toNames) if toNames else 0 ccNames = fcp.GetMsgNameList(fcpdefs.dCopyName) numCcNames = len(ccNames) if ccNames else 0 %>
フォーム テンプレートが使用できないため、このドキュメントを正しく表示できません。いくつかの情報が不足している可能性があります。詳細については管理者にお問い合わせください。
${subject}
${fcnames.renderFCNames(fromNames,fcpdefs.dFromName,"差出人:",False,False,"","")} %if numToNames > 0: ${fcnames.renderFCNames(toNames,fcpdefs.dToName,"宛先:",False,True,"","")} %endif %if numCcNames > 0: ${fcnames.renderFCNames(ccNames,fcpdefs.dCopyName,"CC:",False,True,"","")} %endif %if fcp.GetNthMLItem(0):
    %endif