redhat-beyond / JobSeeker

https://github.com/redhat-beyond/JobSeeker
MIT License
2 stars 5 forks source link

🏇 Personal Profile: Add A Simple View `.html` #52

Closed taljacob2 closed 2 years ago

taljacob2 commented 2 years ago

TODO (You may do this either on this PR or on a future PR):

Add a simple view in http://localhost:8000/profile/ to enable future work on the view for this "feature"-app.

In app/settings.py line 60, please add the line of:

os.path.join(BASE_DIR, 'personal_profile', 'templates', 'personal_profile'), 

So it will look like so:

        'DIRS': [os.path.join(BASE_DIR, 'templates'),
                 os.path.join(BASE_DIR, 'jobseeker', 'templates', 'jobseeker'),
                 os.path.join(BASE_DIR, 'personal_profile', 'templates', 'personal_profile'), ],

This will enable the view to the http://localhost:8000/profile/ page, so you could continue work on that page in the future.

Screenshot: image

Originally posted by @taljacob2 in https://github.com/redhat-beyond/JobSeeker/pull/35#pullrequestreview-916360823

taljacob2 commented 2 years ago

Closed in #36.