Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 968 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 968 Bytes

django_snek

Fooling around with django tutorial, only instead of a polls app, I made a fic one.

Tutorial link

Currently working off of the polls tutorial in the official Django docs. About to start on part 3.

What I've done so far:

  • Modified base site
    • changed timezone
    • changed database name
    • run initial db migration
    • setup urls.py to point to fic and admin
  • Added fic app
    • added Fanfic and Link models
    • registered above models in admin.py
    • added a simple index view
    • pointed to index view in fic\urls.py
    • run initial db migrations that include the new models
    • added a little test data via django's db api

To Do

  • add modified django install files to repo
  • make quick list of important stuff I've already done as part of the tutorial
  • include admin user details