Initial commit

This commit is contained in:
John Mullins
2023-08-18 18:10:53 +10:00
commit 0c3ba727bf
25 changed files with 1214 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<h1>Company List</h1>
<table>
{% for item in object_list %}
<tr>
<td>{{ item.name }}</td>
<td>{{ item.contact_name }}</td>
<td>{{ item.contact_number }}</td>
<td>{{ item.contact_email }}</td>
<td>{{ item.address }}</td>
</tr>
{% endfor %}
</table>