changes of reports and pmc reports by pankaj-dev

This commit is contained in:
2026-03-23 10:37:48 +05:30
parent 9bc8c1dd90
commit c8d5a9c37d
110 changed files with 20849 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{% extends 'base.html' %}
{% block content %}
<head>
<title>Edit State</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<h2>Edit State</h2>
<form method="POST">
<input type="text" name="state_Name" placeholder="State Name" value="{{ state[1] }}" required>
<button type="submit">Update</button>
</form>
</body>
{% endblock %}