rating.tpl

来自「太烦了」· TPL 代码 · 共 86 行

TPL
86
字号
{strip}
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
	<tr>
		<td class="module_detail_inside" width="100%">
			{assign var="page_hdr02_text" value="{lang mkey='rating'}"}
			{include file="page_hdr02.tpl"}
			<table cellspacing="0" cellpadding="0" border="0"  width="100%">
				<tr>
					<td align="center">
						<table cellspacing="0" cellpadding="0" border="0" width="100%">
							<tr>
								<td align="center" colspan="11" height="10"></td>
							</tr>
							<tr>
							{foreach item=item from=$rate_values}
								<td width="14" align="right">{$item}</td>
							{/foreach}
							</tr>
							<tr>
								<td align="center" colspan="11" height="12"></td>
							</tr>

						{if $is_rated == 1 }
							<tr>
							{if $rating == 0 }
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td bgcolor="{$color}" width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
							{elseif $rating > 0 }
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								{foreach item=item from=$rating_values}
									{if $item <= $rating }
										<td bgcolor="{$color}" width="14">&nbsp;</td>
									{else}
										<td  width="14">&nbsp;</td>
									{/if}
								{/foreach}
							{elseif $rating < 0 }
								{foreach item=item from=$diff_values}
									<td  width="14">&nbsp;</td>
        {/foreach}
								{foreach item=item from=$rating_values}
									{if $item >= $rating }
										<td bgcolor="{$color}" width="14">&nbsp;</td>
									{else}
										<td  width="14">&nbsp;</td>
									{/if}
								{/foreach}
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>
								<td width="14">&nbsp;</td>

							{/if}
							</tr>
						{elseif $is_rated == 0}
							<tr>
								<td align="center" colspan="11">{lang mkey='no_rating'}</td>
							</tr>
						{/if}
						</table>
					</td>
				</tr>
			</table>
			<br />
		</td>
	</tr>
</table>
{/strip}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?