Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <div class='ipsBox'>
  2. <div class='ipsBox_container'>
  3. <table class='ipb_table'>
  4. <thead>
  5. <tr class='header'>
  6. <th width='20%'>{$this->lang->words['warnings_date']}</th>
  7. <th width='20%'>{$this->lang->words['warnings_reason']}</th>
  8. <th width='20%'>{$this->lang->words['warnings_points']}</th>
  9. <th width='20%'>{$this->lang->words['warnings_moderator']}</th>
  10. <th width='20%'>&nbsp;</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <foreach loop="warnings:$warnings as $warning">
  15. <tr>
  16. <td>{parse date="$warning['wl_date']" format="JOINED"}</td>
  17. <td>
  18. <if test="hasReason:|:isset( $reasons[ $warning['wl_reason'] ] )">
  19. {$reasons[ $warning['wl_reason'] ]['wr_name']}
  20. <else />
  21. {$this->lang->words['warnings_reasons_other']}
  22. </if>
  23. </td>
  24. <td>{$warning['wl_points']}</td>
  25. <td>{parse template="userHoverCard" group="global" params="$warning['wl_moderator']"}</td>
  26. <td><a href='javascript:void(0);' class='ipsButton_secondary' onclick='warningPopup( this, {$warning['wl_id']} )'>{$this->lang->words['warnings_moreinfo']}</a></td>
  27. </tr>
  28. </foreach>
  29. </tbody>
  30. </table>
  31. </div>
  32. </div>
  33. </if>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement