Skip to content

Commit 2b8bc5e

Browse files
committed
updated the expnese sheet
1 parent d90492d commit 2b8bc5e

14 files changed

+310
-312
lines changed

__pycache__/forms.cpython-312.pyc

-22 Bytes
Binary file not shown.

__pycache__/models.cpython-312.pyc

-22 Bytes
Binary file not shown.

app.py

+29-98
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
from io import BytesIO
1212
from reportlab.lib.pagesizes import A4
1313
from reportlab.pdfgen import canvas
14+
from calendar import month_name
15+
from sqlalchemy import extract
1416

1517

1618

@@ -117,118 +119,44 @@ def enroll():
117119

118120
return render_template('enroll.html', form=form)
119121

120-
# @app.route('/expenses', methods=['GET', 'POST'])
121-
# def expenses():
122-
# form = ExpenseForm()
123-
# if form.validate_on_submit():
124-
# # Save the new expense to the database
125-
# new_expense = Expense(
126-
# item_name=form.item_name.data,
127-
# price=form.price.data,
128-
# date=form.date.data
129-
# )
130-
# db.session.add(new_expense)
131-
# db.session.commit()
132-
# flash('Expense added successfully!', 'success')
133-
# return redirect(url_for('expenses'))
134-
135-
# # Retrieve all expenses from the database
136-
# expenses = Expense.query.all()
137-
# total = sum(expense.price for expense in expenses)
138-
139-
# return render_template('expenses.html', form=form, expenses=expenses, total=total)
140122

141123
@app.route('/expenses', methods=['GET', 'POST'])
124+
@login_required
142125
def expenses():
143126
form = ExpenseForm()
144-
current_year = datetime.today().year
145-
current_month = datetime.today().month
127+
128+
# Get filter parameters
129+
month = request.args.get('month', datetime.now().month, type=int)
130+
year = request.args.get('year', datetime.now().year, type=int)
131+
132+
# Query expenses with filters
133+
expenses = Expense.query.filter(
134+
extract('year', Expense.date) == year,
135+
extract('month', Expense.date) == month
136+
).order_by(Expense.date.desc()).all()
137+
138+
# Calculate total
139+
total = sum(expense.price for expense in expenses)
146140

147-
# Adding a new expense if the form is submitted
148141
if form.validate_on_submit():
149-
new_expense = Expense(
142+
expense = Expense(
150143
item_name=form.item_name.data,
151144
price=form.price.data,
152-
date=form.date.data
145+
date=form.date.data,
146+
user_id=current_user.id
153147
)
154-
db.session.add(new_expense)
148+
db.session.add(expense)
155149
db.session.commit()
156150
flash('Expense added successfully!', 'success')
157151
return redirect(url_for('expenses'))
158152

159-
# Group expenses by month and year
160-
grouped_expenses = db.session.query(
161-
db.extract('year', Expense.date).label('year'),
162-
db.extract('month', Expense.date).label('month'),
163-
db.func.sum(Expense.price).label('total')
164-
).group_by('year', 'month').order_by('year', 'month').all()
165-
166-
# Retrieve expenses for a specific month if selected
167-
year = request.args.get('year', current_year, type=int)
168-
month = request.args.get('month', current_month, type=int)
169-
expenses = Expense.query.filter(
170-
db.extract('year', Expense.date) == year,
171-
db.extract('month', Expense.date) == month
172-
).all()
173-
total = sum(expense.price for expense in expenses)
174-
175-
return render_template('expenses.html', form=form, expenses=expenses, total=total,
176-
grouped_expenses=grouped_expenses, year=year, month=month,
177-
current_year=current_year, current_month=current_month)
178-
# @app.route('/export_pdf/<int:year>/<int:month>', methods=['GET'])
179-
# def export_pdf(year, month):
180-
# # Get expenses for the specified month and year
181-
# expenses = Expense.query.filter(
182-
# db.extract('year', Expense.date) == year,
183-
# db.extract('month', Expense.date) == month
184-
# ).all()
185-
186-
# # Calculate total expenses for the month
187-
# total = sum(expense.price for expense in expenses)
188-
189-
# # Create a BytesIO buffer for the PDF
190-
# buffer = BytesIO()
191-
# pdf = canvas.Canvas(buffer, pagesize=A4)
192-
# width, height = A4
193-
194-
# # PDF Title
195-
# pdf.setFont("Helvetica-Bold", 16)
196-
# pdf.drawString(200, height - 50, f"Expense Report - {month}/{year}")
197-
198-
# # Table headers
199-
# pdf.setFont("Helvetica-Bold", 12)
200-
# pdf.drawString(50, height - 100, "Item Name")
201-
# pdf.drawString(250, height - 100, "Price (Rs)")
202-
# pdf.drawString(400, height - 100, "Date")
203-
204-
# # Table content
205-
# y_position = height - 130
206-
# pdf.setFont("Helvetica", 10)
207-
# for expense in expenses:
208-
# pdf.drawString(50, y_position, expense.item_name)
209-
# pdf.drawString(250, y_position, f"Rs {expense.price}")
210-
# pdf.drawString(400, y_position, expense.date.strftime('%Y-%m-%d'))
211-
# y_position -= 20
212-
213-
# # Add a new page if y_position is too low
214-
# if y_position < 50:
215-
# pdf.showPage()
216-
# y_position = height - 50
217-
218-
# # Total expenses
219-
# pdf.setFont("Helvetica-Bold", 12)
220-
# pdf.drawString(50, y_position - 30, f"Total Expenses for {month}/{year}: Rs {total}")
221-
222-
# pdf.save()
223-
224-
# # Move the buffer's position back to the start
225-
# buffer.seek(0)
226-
227-
# # Send the PDF as a file download
228-
# return send_file(buffer, as_attachment=True, download_name=f"Expense_Report_{month}_{year}.pdf", mimetype='application/pdf')
229-
153+
return render_template('expenses.html',
154+
form=form,
155+
expenses=expenses,
156+
total=total,
157+
current_month=month,
158+
current_year=year)
230159

231-
# Constants
232160
INCOME = 345000
233161

234162
@app.route('/export_pdf/<int:year>/<int:month>', methods=['GET'])
@@ -394,6 +322,9 @@ def view_all_fee_records():
394322
fee_records = FeeRecord.query.join(Student).all()
395323
return render_template('view_all_fee_records.html', fee_records=fee_records)
396324

325+
@app.template_filter('month_name')
326+
def month_name_filter(month_number):
327+
return month_name[month_number]
397328

398329
if __name__ == '__main__':
399330
app.run(debug=True,port=5051)

instance/hostel.db

0 Bytes
Binary file not shown.

models.py

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class FeeRecord(db.Model):
1313
student_id = db.Column(db.Integer, db.ForeignKey('student.id'), nullable=False)
1414
amount = db.Column(db.Float, nullable=False)
1515
date_paid = db.Column(db.Date, default=datetime.utcnow)
16-
1716
student = db.relationship('Student', back_populates='fee_records')
1817

1918
# Update Student model to include the relationship

static/expenses.css

-28
Original file line numberDiff line numberDiff line change
@@ -1,28 +0,0 @@
1-
.card {
2-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
3-
border-radius: 12px;
4-
color:black;
5-
background-color: steelblue;
6-
}
7-
.btn-primary, .btn-danger {
8-
transition: transform 0.2s ease-in-out;
9-
}
10-
.btn-primary:hover, .btn-danger:hover {
11-
transform: scale(1.05);
12-
}
13-
.table th, .table td {
14-
vertical-align: middle;
15-
text-align: center;
16-
}
17-
.btn-warning {
18-
color: #fff;
19-
}
20-
21-
/* Set the form font color to black */
22-
.card-body, .card-title, .form-label, input {
23-
color: black !important;
24-
}
25-
.card p-4 {
26-
background-color : black;
27-
28-
}
Loading
31.1 KB
Loading
Loading
Loading

templates/Home.html

+44-22
Original file line numberDiff line numberDiff line change
@@ -90,39 +90,61 @@ <h2 class="text-center mb-4">Our Hostel</h2>
9090
</div>
9191
</section>
9292

93-
<!-- Facilities Section -->
94-
<section class="facilities my-5">
95-
<h2 class="text-center mb-4">Facilities Provided</h2>
96-
<div class="row text-center">
97-
<div class="col-md-4 mb-3">
98-
<div class="card shadow">
99-
<div class="card-body">
100-
<h5 class="card-title">24/7 Security</h5>
101-
<p class="card-text">CCTV Surveillance and security staff.</p>
93+
<!-- Facilities Section -->
94+
<section class="facilities my-5 py-5 bg-dark">
95+
<div class="container">
96+
<h2 class="text-center mb-4 fw-bold text-primary">Facilities Provided</h2>
97+
<div class="row text-center">
98+
<div class="col-md-4 mb-4">
99+
<div class="card facility-card shadow-sm border-0">
100+
<div class="card-body">
101+
<div class="icon mb-3">
102+
<i class="bi bi-shield-lock-fill text-primary display-4"></i>
102103
</div>
104+
<h5 class="card-title fw-bold text-dark">24/7 Security</h5>
105+
<p class="card-text text-muted">CCTV Surveillance and security staff for your peace of mind.</p>
103106
</div>
104107
</div>
105-
<div class="col-md-4 mb-3">
106-
<div class="card shadow">
107-
<div class="card-body">
108-
<h5 class="card-title">Wi-Fi Connectivity</h5>
109-
<p class="card-text">High-speed internet access throughout the hostel.</p>
108+
</div>
109+
<div class="col-md-4 mb-4">
110+
<div class="card facility-card shadow-sm border-0">
111+
<div class="card-body">
112+
<div class="icon mb-3">
113+
<i class="bi bi-wifi text-primary display-4"></i>
110114
</div>
115+
<h5 class="card-title fw-bold text-dark">Wi-Fi Connectivity</h5>
116+
<p class="card-text text-muted">Enjoy high-speed internet access throughout the hostel.</p>
111117
</div>
112118
</div>
113-
<div class="col-md-4 mb-3">
114-
<div class="card shadow">
115-
<div class="card-body">
116-
<h5 class="card-title">Clean and Hygienic Rooms</h5>
117-
<p class="card-text">Well-maintained and sanitized rooms.</p>
119+
</div>
120+
<div class="col-md-4 mb-4">
121+
<div class="card facility-card shadow-sm border-0">
122+
<div class="card-body">
123+
<div class="icon mb-3">
124+
<i class="bi bi-house-heart text-primary display-4"></i>
118125
</div>
126+
<h5 class="card-title fw-bold text-dark">Hygienic Rooms</h5>
127+
<p class="card-text text-muted">Well-maintained and sanitized rooms for your comfort.</p>
119128
</div>
120129
</div>
121130
</div>
122-
</section>
131+
132+
<div class="col-md-4 mb-4">
133+
<div class="card facility-card shadow-sm border-0">
134+
<div class="card-body">
135+
<div class="icon mb-3">
136+
<i class="bi bi-house-heart text-primary display-4"></i>
137+
</div>
138+
<h5 class="card-title fw-bold text-dark">Financial Aid available</h5>
139+
<p class="card-text text-muted">We provide generous aid to our students</p>
140+
</div>
141+
</div>
142+
</div>
143+
</div>
123144
</div>
145+
</section>
146+
124147

125-
<!-- Footer -->
126148
<footer class="bg-dark text-white py-4">
127149
<div class="container text-center">
128150
<p>Address: House 24, Street 586, G13/2, Islamabad</p>
@@ -223,7 +245,7 @@ <h5 class="card-title">Clean and Hygienic Rooms</h5>
223245
}
224246
},
225247
"bubble": {
226-
"distance": 400,
248+
"distance": 200,
227249
"size": 40,
228250
"duration": 2,
229251
"opacity": 8,

templates/base.html

+2-41
Original file line numberDiff line numberDiff line change
@@ -33,48 +33,9 @@
3333

3434
<!-- Footer -->
3535
<footer class="footer bg-dark text-white">
36-
<div class="container p-4">
37-
<section class="mb-4 text-center">
38-
<a href="#" class="me-4 text-reset"><i class="fab fa-facebook-f"></i></a>
39-
<a href="#" class="me-4 text-reset"><i class="fab fa-twitter"></i></a>
40-
<a href="#" class="me-4 text-reset"><i class="fab fa-google"></i></a>
41-
<a href="#" class="me-4 text-reset"><i class="fab fa-instagram"></i></a>
42-
<a href="#" class="me-4 text-reset"><i class="fab fa-linkedin"></i></a>
43-
<a href="#" class="me-4 text-reset"><i class="fab fa-github"></i></a>
44-
</section>
45-
<section>
46-
<div class="row">
47-
<div class="col-md-3">
48-
<h6 class="text-uppercase fw-bold">Comprehensive Community Care Hostel</h6>
49-
<p>Here you can use rows and columns to organize your footer content.</p>
50-
</div>
51-
<div class="col-md-2">
52-
<h6 class="text-uppercase fw-bold">Products</h6>
53-
<p><a href="#!" class="text-reset">Angular</a></p>
54-
<p><a href="#!" class="text-reset">React</a></p>
55-
<p><a href="#!" class="text-reset">Vue</a></p>
56-
<p><a href="#!" class="text-reset">Laravel</a></p>
57-
</div>
58-
<div class="col-md-2">
59-
<h6 class="text-uppercase fw-bold">Useful Links</h6>
60-
<p><a href="#!" class="text-reset">Pricing</a></p>
61-
<p><a href="#!" class="text-reset">Settings</a></p>
62-
<p><a href="#!" class="text-reset">Orders</a></p>
63-
<p><a href="#!" class="text-reset">Help</a></p>
64-
</div>
65-
<div class="col-md-3">
66-
<h6 class="text-uppercase fw-bold">Contact</h6>
67-
<p><i class="fas fa-home"></i> New York, NY 10012, US</p>
68-
<p><i class="fas fa-envelope"></i> [email protected]</p>
69-
<p><i class="fas fa-phone"></i> +01 234 567 88</p>
70-
<p><i class="fas fa-print"></i> +01 234 567 89</p>
71-
</div>
72-
</div>
73-
</section>
74-
</div>
75-
<div class="text-center p-3 bg-secondary">
36+
<div class="text-center bg-dark">
7637
© 2024 Copyright:
77-
<a class="text-reset fw-bold" href="https://mdbootstrap.com/">MDBootstrap.com</a>
38+
<a class="text-reset fw-bold" href="https://github.com/Ctoic">Comprehensive Community Care</a>
7839
</div>
7940
</footer>
8041

0 commit comments

Comments
 (0)