-
-
Save batmanhot/42bc605236f323d46d742613c9396898 to your computer and use it in GitHub Desktop.
Gist para Listado de Clientes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ` <tr> | |
| <td class="px-6 py-4 whitespace-no-wrap border-b border-gray-200"> | |
| <p class="text-sm leading-5 font-medium text-gray-700 text-lg font-bold"> ${nombre} </p> | |
| <p class="text-sm leading-10 text-gray-700"> ${email} </p> | |
| </td> | |
| <td class="px-6 py-4 whitespace-no-wrap border-b border-gray-200 "> | |
| <p class="text-gray-700">${telefono}</p> | |
| </td> | |
| <td class="px-6 py-4 whitespace-no-wrap border-b border-gray-200 leading-5 text-gray-700"> | |
| <p class="text-gray-600">${empresa}</p> | |
| </td> | |
| <td class="px-6 py-4 whitespace-no-wrap border-b border-gray-200 text-sm leading-5"> | |
| <a href="editar-cliente.html?id=${id}" class="text-teal-600 hover:text-teal-900 mr-5">Editar</a> | |
| <a href="#" data-cliente="${id}" class="text-red-600 hover:text-red-900">Eliminar</a> | |
| </td> | |
| </tr> | |
| `; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment