12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {extend name="default/base/base_seller" /}
- {block name="seller_main"}
- <div class="alert alert-block mt10"> <strong>{$Think.lang.instructions}:</strong>
- <ul class="mt5">
- <li>{$Think.lang.notes_message_setup1}</li>
- <li>{$Think.lang.notes_message_setup2}<a style="color: red" href="{:url('Selleraccountgroup/group_list')}" target="_blank">{$Think.lang.account_group}</a>{$Think.lang.inside_setting}。</li>
- </ul>
- </div>
- <table class="dssc-default-table">
- <thead>
- <tr>
- <th class="w10"></th>
- <th>{$Think.lang.template_name}</th>
- <th class="w300">{$Think.lang.receiving_mode}</th>
- <th class="w70">{$Think.lang.ds_handle}</th>
- </tr>
- </thead>
- <tbody>
- {notempty name="smt_list"}
- {foreach name="smt_list" item="val"}
- <tr class="bd-line">
- <td></td>
- <td class="tl"><strong>{$val.storemt_name}</strong></td>
- <td>{$val.is_opened|raw}</td>
- <td class="dscs-table-handle">
- {notempty name="val.is_opened"}
- <span>
- <a href="javascript:void(0);" class="btn-acidblue" ds_type="dialog" dialog_title="{$Think.lang.receiving_setting}" dialog_id="msg_setting" dialog_width="480" uri="{:url('Sellermsg/edit_msg_setting',['code'=>$val.storemt_code])}"><i class="iconfont"></i>
- <p>{$Think.lang.setting}</p>
- </a>
- </span>
- {/notempty}
- </td>
- </tr>
- {/foreach}
- {else /}
- <tr>
- <td colspan="20" class="norecord"><div class="warning-option"><i class="iconfont"></i><span>{$Think.lang.no_record}</span></div></td>
- </tr>
- {/notempty}
- </tbody>
- </table>
- {/block}
|