You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Lorem ipsum dolor sit amet consectetur adipiscing",
42
-
due_date=date.today() +timedelta(days=7),
43
-
status=Status.TO_DO,
44
-
priority=Priority.LOW,
45
-
user_id=user1.id
46
-
)
40
+
title="Plan weekend trip",
41
+
description="Research destinations, compare prices, and book accommodation for a short getaway.",
42
+
due_date=date.today() +timedelta(days=7),
43
+
status=Status.TO_DO,
44
+
priority=Priority.MEDIUM,
45
+
user_id=user1.id
46
+
)
47
47
48
48
task2=Task(
49
-
title="Second task",
50
-
description="Lorem ipsum dolor sit amet consectetur adipiscing elit quisque faucibus ex sapien vitae pellentesque sem placerat in id cursus mi.",
51
-
due_date=date.today() +timedelta(days=3),
52
-
status=Status.IN_PROGRESS,
53
-
priority=Priority.HIGH,
54
-
user_id=user1.id
55
-
)
49
+
title="Finish project report",
50
+
description="Complete the final draft of the quarterly report and send it to the manager for review.",
51
+
due_date=date.today() +timedelta(days=3),
52
+
status=Status.IN_PROGRESS,
53
+
priority=Priority.HIGH,
54
+
user_id=user1.id
55
+
)
56
56
57
57
task3=Task(
58
-
title="First task",
59
-
description="Example task",
60
-
due_date=date.today() +timedelta(days=7),
61
-
status=Status.TO_DO,
62
-
priority=Priority.LOW,
63
-
user_id=user2.id
64
-
)
58
+
title="Grocery shopping",
59
+
description="Buy essentials: milk, eggs, bread, vegetables, and snacks for the week.",
60
+
due_date=date.today() +timedelta(days=7),
61
+
status=Status.COMPLETED,
62
+
priority=Priority.LOW,
63
+
user_id=user2.id
64
+
)
65
65
66
66
task4=Task(
67
-
title="Second task",
68
-
description="Another task",
69
-
due_date=date.today() +timedelta(days=3),
70
-
status=Status.IN_PROGRESS,
71
-
priority=Priority.HIGH,
72
-
user_id=user2.id
73
-
)
67
+
title="Workout routine",
68
+
description="Complete a 45-minute workout session focusing on cardio and strength training.",
69
+
due_date=date.today() +timedelta(days=2),
70
+
status=Status.IN_PROGRESS,
71
+
priority=Priority.MEDIUM,
72
+
user_id=user2.id
73
+
)
74
74
75
75
task5=Task(
76
-
title="Third task",
77
-
description="Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text",
78
-
due_date=date.today() +timedelta(days=7),
76
+
title="Read a book",
77
+
description="Read at least 3 chapters of the current book and take notes on key ideas.",
78
+
due_date=date.today() +timedelta(days=6),
79
79
status=Status.TO_DO,
80
80
priority=Priority.LOW,
81
81
user_id=user1.id
82
82
)
83
83
84
84
task6=Task(
85
-
title="Fourth task",
86
-
description="It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' ",
87
-
due_date=date.today() +timedelta(days=3),
85
+
title="Update portfolio website",
86
+
description="Add recent projects, improve layout, and fix responsiveness issues on mobile devices.",
87
+
due_date=date.today() +timedelta(days=4),
88
88
status=Status.IN_PROGRESS,
89
89
priority=Priority.HIGH,
90
90
user_id=user1.id
91
91
)
92
92
93
93
task7=Task(
94
-
title="Third task",
95
-
description="Example task",
96
-
due_date=date.today() +timedelta(days=7),
94
+
title="Call family",
95
+
description="Catch up with family members and check in on how everyone is doing.",
96
+
due_date=date.today() +timedelta(days=5),
97
97
status=Status.TO_DO,
98
98
priority=Priority.LOW,
99
99
user_id=user2.id
100
100
)
101
101
102
102
task8=Task(
103
-
title="Fourth task",
104
-
description="Another task",
105
-
due_date=date.today() +timedelta(days=3),
103
+
title="Clean apartment",
104
+
description="Vacuum, dust surfaces, clean kitchen, and organize cluttered areas.",
105
+
due_date=date.today() +timedelta(days=1),
106
106
status=Status.IN_PROGRESS,
107
-
priority=Priority.HIGH,
107
+
priority=Priority.MEDIUM,
108
108
user_id=user2.id
109
109
)
110
110
111
111
task9=Task(
112
-
title="Fourth task",
113
-
description="Another task",
114
-
due_date=date.today() +timedelta(days=3),
112
+
title="Prepare presentation slides",
113
+
description="Create slides for the upcoming meeting, including visuals and key metrics.",
114
+
due_date=date.today() +timedelta(days=2),
115
115
status=Status.IN_PROGRESS,
116
116
priority=Priority.HIGH,
117
117
user_id=user1.id
118
118
)
119
119
120
120
task10=Task(
121
-
title="Fourth task",
122
-
description="Another task",
123
-
due_date=date.today() +timedelta(days=3),
121
+
title="Fix login bug",
122
+
description="Investigate and resolve authentication issue affecting user sign-ins.",
123
+
due_date=date.today() +timedelta(days=1),
124
124
status=Status.IN_PROGRESS,
125
125
priority=Priority.HIGH,
126
126
user_id=user1.id
127
127
)
128
128
129
129
task11=Task(
130
-
title="Fourth task",
131
-
description="Another task",
132
-
due_date=date.today() +timedelta(days=3),
133
-
status=Status.IN_PROGRESS,
134
-
priority=Priority.HIGH,
130
+
title="Email client feedback",
131
+
description="Respond to client questions and provide updates on requested changes.",
132
+
due_date=date.today() +timedelta(days=2),
133
+
status=Status.COMPLETED,
134
+
priority=Priority.MEDIUM,
135
135
user_id=user1.id
136
136
)
137
137
138
138
task12=Task(
139
-
title="Fourth task",
140
-
description="Another task",
141
-
due_date=date.today() +timedelta(days=3),
142
-
status=Status.IN_PROGRESS,
139
+
title="Backup database",
140
+
description="Run a full backup and verify data integrity for the production database.",
141
+
due_date=date.today() +timedelta(days=1),
142
+
status=Status.TO_DO,
143
143
priority=Priority.HIGH,
144
144
user_id=user1.id
145
145
)
146
146
147
147
task13=Task(
148
-
title="Fourth task",
149
-
description="Another task",
150
-
due_date=date.today() +timedelta(days=3),
148
+
title="Team meeting prep",
149
+
description="Review agenda, gather updates, and prepare talking points for the weekly sync.",
150
+
due_date=date.today() +timedelta(days=2),
151
151
status=Status.IN_PROGRESS,
152
-
priority=Priority.HIGH,
152
+
priority=Priority.MEDIUM,
153
153
user_id=user1.id
154
154
)
155
155
156
156
task14=Task(
157
-
title="Fourth task",
158
-
description="Another task",
159
-
due_date=date.today() +timedelta(days=3),
160
-
status=Status.IN_PROGRESS,
157
+
title="Refactor API endpoints",
158
+
description="Improve code structure, reduce duplication, and optimize response times.",
159
+
due_date=date.today() +timedelta(days=5),
160
+
status=Status.TO_DO,
161
161
priority=Priority.HIGH,
162
162
user_id=user1.id
163
163
)
164
164
165
165
task15=Task(
166
-
title="Fourth task",
167
-
description="Another task",
168
-
due_date=date.today() +timedelta(days=3),
166
+
title="Write unit tests",
167
+
description="Increase test coverage for critical modules and fix failing test cases.",
168
+
due_date=date.today() +timedelta(days=4),
169
169
status=Status.IN_PROGRESS,
170
170
priority=Priority.HIGH,
171
171
user_id=user1.id
172
172
)
173
173
174
174
task16=Task(
175
-
title="Fourth task",
176
-
description="Another task",
177
-
due_date=date.today() +timedelta(days=3),
175
+
title="Plan next sprint",
176
+
description="Define goals, prioritize backlog items, and allocate tasks to the team.",
177
+
due_date=date.today() +timedelta(days=6),
178
+
status=Status.TO_DO,
179
+
priority=Priority.MEDIUM,
180
+
user_id=user1.id
181
+
)
182
+
183
+
task17=Task(
184
+
title="Review pull requests",
185
+
description="Go through open PRs, leave feedback, and approve changes where appropriate.",
186
+
due_date=date.today() +timedelta(days=1),
178
187
status=Status.IN_PROGRESS,
179
188
priority=Priority.HIGH,
180
189
user_id=user1.id
181
190
)
182
191
183
-
task17=Task(
184
-
title="Fourth task",
185
-
description="Another task",
192
+
# --- New tasks for user1 to reach 20 total ---
193
+
194
+
task18=Task(
195
+
title="Optimize database queries",
196
+
description="Analyze slow queries and add indexing to improve performance.",
0 commit comments