How To Use Django url Tag And reverse() Function To Avoid Url Hard Coded
Hard coded url in your Django template html files or views.py file is a bad practice. Because it is difficult to maintain url changes. If you change one url, you may need to change that url in a lot of pages. So Django provide template url tag and reverse function for you to avoid hard …
How To Use Django url Tag And reverse() Function To Avoid Url Hard Coded Read More »