Proof of Work

Django Image 1 Django Image 2 Django Image 3

Project Explanation

The project structure should look like this:

C:/Users/Nooshin/djangotutorial/
  ├── myapp/
  ├── mysite/
  ├── static/
  │    └── Figure.jpg
  ├── templates/
  ├── manage.py
  └── db.sqlite3

1. Main Page Layout:

The layout will have:

2. Buttons (on the left side):

3. Alliance Page Layout:

Steps to Implement

  1. Create the home.html Template for the main page.
  2. Create the alliance.html Template for the Alliance page.
  3. Update views.py to render both templates.
  4. Update urls.py to route to the new Alliance page.
  5. Add the Image.
  6. Run the Server.
  7. Explore the full project on GitHub: Django Tutorial Repository.