modification ui changes base pages,login, manus and from chnages and adding filds. V2 commit
This commit is contained in:
@@ -1,26 +1,49 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
{% extends "base.html" %}
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Update CIT Record</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
|
||||
</head>
|
||||
{% block title %}Update CIT Record{% endblock %}
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<!-- Back to Dashboard Button -->
|
||||
<a href="{{ url_for('index') }}" class="back-btn">← Back to Dashboard</a>
|
||||
{% block extra_css %}
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/add_cit.css') }}">
|
||||
{% endblock %}
|
||||
|
||||
<h2>Update CIT Record for Year {{ record.year }}</h2>
|
||||
<form method="POST" action="{{ url_for('update_cit', id=record.id) }}">
|
||||
{% for field in record.keys() if field != 'id' %}
|
||||
<label>{{ field.replace("_", " ").title() }}:</label>
|
||||
<input type="number" name="{{ field }}" step="0.01" value="{{ record[field] }}" required>
|
||||
{% endfor %}
|
||||
<button type="submit">Update Record</button>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
{% block content %}
|
||||
|
||||
</html>
|
||||
<div class="container">
|
||||
|
||||
<h2>Update CIT Record for AY {{ record.year }}</h2>
|
||||
|
||||
<form method="POST" action="{{ url_for('update_cit', id=record.id) }}">
|
||||
|
||||
<label for="year">Year:</label>
|
||||
<input type="text" id="year" name="year" value="{{ record.year }}" readonly class="readonly-field">
|
||||
|
||||
{% for field in record.keys() if field not in ['id', 'year'] %}
|
||||
<label for="{{ field }}">{{ field.replace("_", " ").title() }}:</label>
|
||||
<input type="number" id="{{ field }}" name="{{ field }}" step="any" value="{{ record[field] }}" required>
|
||||
{% endfor %}
|
||||
|
||||
<!-- {% for field in record.keys() if field != 'id' %}-->
|
||||
<!-- <label for="{{ field }}">{{ field.replace('_', ' ').title() }}:</label>-->
|
||||
<!-- <input -->
|
||||
<!-- type="number" -->
|
||||
<!-- step="0.01" -->
|
||||
<!-- id="{{ field }}" -->
|
||||
<!-- name="{{ field }}" -->
|
||||
<!-- value="{{ record[field] }}" -->
|
||||
<!-- required -->
|
||||
<!-- />-->
|
||||
<!-- {% endfor %}-->
|
||||
|
||||
<button type="submit">Update Record</button>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{% block extra_js %}
|
||||
<script src="{{ url_for('static', filename='js/toggle.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='js/cit_calc.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='js/year_dropdown.js') }}"></script>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user