This commit is contained in:
2025-07-15 20:47:58 +03:00
parent d986fdf232
commit f6c78a20a3
23 changed files with 219 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{% extends 'employee-base.html' %}
{% load static %}
{% block content %}
<form id="companyForm" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Update Company">
</form>
{% endblock content %}