Python Forum
Employee task manager and progress pipeline - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: Employee task manager and progress pipeline (/thread-22873.html)



Employee task manager and progress pipeline - KM_Hypnos - Nov-30-2019

Hello Community.

I've just ended with the basics of coding and OOP for Python. I would like to create a very basic web app that has an interface for adding employees and assigning tasks to them. As well as a separate web page for employees to log in, and tick off the different sub-tasks related to the completion of their assigned main task.

I know how to make classes and objects, variables, arrays, and conditional statements. Can someone please help me with the blueprint of things I need to do to achieve this.

Thank you for your help.


RE: Employee task manager and progress pipeline - Larz60+ - Nov-30-2019

This is more information than can be presented in a simple post.
You should take in a tutorial on Flask, suggest: https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world


RE: Employee task manager and progress pipeline - KM_Hypnos - Nov-30-2019

Thanks. I'll check it out.