msg_setting.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {extend name="default/base/base_seller" /}
  2. {block name="seller_main"}
  3. <div class="alert alert-block mt10"> <strong>{$Think.lang.instructions}:</strong>
  4. <ul class="mt5">
  5. <li>{$Think.lang.notes_message_setup1}</li>
  6. <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>
  7. </ul>
  8. </div>
  9. <table class="dssc-default-table">
  10. <thead>
  11. <tr>
  12. <th class="w10"></th>
  13. <th>{$Think.lang.template_name}</th>
  14. <th class="w300">{$Think.lang.receiving_mode}</th>
  15. <th class="w70">{$Think.lang.ds_handle}</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. {notempty name="smt_list"}
  20. {foreach name="smt_list" item="val"}
  21. <tr class="bd-line">
  22. <td></td>
  23. <td class="tl"><strong>{$val.storemt_name}</strong></td>
  24. <td>{$val.is_opened|raw}</td>
  25. <td class="dscs-table-handle">
  26. {notempty name="val.is_opened"}
  27. <span>
  28. <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">&#xe734;</i>
  29. <p>{$Think.lang.setting}</p>
  30. </a>
  31. </span>
  32. {/notempty}
  33. </td>
  34. </tr>
  35. {/foreach}
  36. {else /}
  37. <tr>
  38. <td colspan="20" class="norecord"><div class="warning-option"><i class="iconfont">&#xe64c;</i><span>{$Think.lang.no_record}</span></div></td>
  39. </tr>
  40. {/notempty}
  41. </tbody>
  42. </table>
  43. {/block}