Advertisement
Guest User

Untitled

a guest
Mar 1st, 2021
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <script type="text/template" id="tmpl-um-member-list-<?php echo esc_attr( $unique_hash ) ?>">
  2. <table class="um-members-list">
  3. <thead>
  4. <tr>
  5. <th><strong>Name</strong></th>
  6. <th><strong>Home Phone</strong></th>
  7. <th><strong>Mobile Phone</strong></th>
  8. <!-- <th><strong>Email</strong></th> -->
  9. <th><strong>Address</strong></th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <# if ( data.length > 0 ) { #>
  14. <# _.each( data, function( user, key, list ) { #>
  15.  
  16. <tr>
  17. <td>{{{user.display_name_html}}}</td>
  18. <td>{{{user.phone_number}}}</td>
  19. <td>{{{user.mobile_number}}}</td>
  20. <!-- <td>{{{user.user_email}}}</td> -->
  21. <td>{{{user.community_address}}}</td>
  22. </tr>
  23.  
  24.  
  25.  
  26. <# }); #>
  27. <# } else { #>
  28.  
  29. <div class="um-members-none">
  30. <p><?php echo $no_users; ?></p>
  31. </div>
  32.  
  33. <# } #>
  34. </tobdy>
  35. </table>
  36. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement