وب سایت تخصصی شرکت فرین
دسته بندی دوره ها

Django Getting Started Course

سرفصل های دوره

1
  • 1 View Lecture- Chapter concepts
  • 2 View Lecture- Your first Django app
  • 3 View Lecture- Why choose Django-
  • 4 View Lecture- Who uses Django-
  • 5 View Lecture- Student prerequisites
  • 6 View Lecture- Minimum library versions
  • 7 View Lecture- Visualizing how Django works
  • 8 View Lecture- Mapping URLs to code
  • 9 View Lecture- HTML template engine
  • 10 View Lecture- Database models
  • 11 View Lecture- Built-in user management
  • 12 View Lecture- Django Admin
  • 13 View Lecture- Djangos pluggable architecture
  • 14 View Lecture- Topics covered throughout this course

  • 2
  • 01 View Lecture- Intro
  • 02 View Lecture- Installing django
  • 03 View Lecture- Your first django app
  • 04 View Lecture- Apps vs projects
  • 05 View Lecture- Creating a Django app
  • 06 View Lecture- Add a new app to Django
  • 07 View Lecture- Creating a view method
  • 08 View Lecture- Connecting a URL to a view
  • 09 View Lecture- Why test Django views-
  • 010 View Lecture- Writing a say hello view test
  • 011 View Lecture- Chapter review

  • 3
  • 01 View Lecture- Chapter concepts
  • 02 View Lecture- New app for templates
  • 03 View Lecture- Your first Django template
  • 04 View Lecture- Rendering the template
  • 05 View Lecture- Registering new home URLs
  • 06 View Lecture- Test the template in the browser
  • 07 View Lecture- Common template tags
  • 08 View Lecture- Common template filters
  • 09 View Lecture- Django output types
  • 010 View Lecture- Configuring static content
  • 011 View Lecture- Favicons and static redirects
  • 012 View Lecture- Introducing layout pages
  • 013 View Lecture- Bootstrap bootcamp
  • 014 View Lecture- Creating the shared layout page
  • 015 View Lecture- Creating the About page
  • 016 View Lecture- Viewing our shiny new About page
  • 017 View Lecture- Building the home page with layout
  • 018 View Lecture- Unit testing HTML templates
  • 019 View Lecture- Chapter review

  • 4
  • 01 View Lecture- Introducing Djangos ORM
  • 02 View Lecture- Creating the Author model
  • 03 View Lecture- Creating the Book model
  • 04 View Lecture- Automatic `created` and `updated` dates on the model
  • 05 View Lecture- Initializing the database
  • 06 View Lecture- The Django REPL
  • 07 View Lecture- Explore the query manager in the Django REPL
  • 08 View Lecture- Using .objects.get() for access by key
  • 09 View Lecture- More advanced queries with .filter()
  • 010 View Lecture- Improved debug info for books
  • 011 View Lecture- Comparison queries such as greater than
  • 012 View Lecture- Exploring the resulting database
  • 013 View Lecture- Introducing data loading fixtures
  • 014 View Lecture- Exporting data with dumpdata
  • 015 View Lecture- Associating data fixtures with a Django app
  • 016 View Lecture- Returning database results in a view
  • 017 View Lecture- Different database back-ends- Sqlite, Postgres, etc
  • 018 View Lecture- Testing Django ORM code
  • 019 View Lecture- Test setup
  • 020 View Lecture- Your first Django ORM test
  • 021 View Lecture- Calling a view in test with the test client
  • 022 View Lecture- Running the stringify test
  • 023 View Lecture- Running all tests
  • 024 View Lecture- Theres more to the ORM
  • 025 View Lecture- Chapter review

  • 5
  • 01 View Lecture- Admin intro
  • 02 View Lecture- Django users
  • 03 View Lecture- Logging into the Admin
  • 04 View Lecture- Modifying users in the Admin
  • 05 View Lecture- Creating Admin views for your models
  • 06 View Lecture- Customizing the display fields in the Admin
  • 07 View Lecture- Add computed fields to ModelAdmin classes
  • 08 View Lecture- Adding and deleting Books in the Admin
  • 09 View Lecture- Filtering records in the Admin
  • 010 View Lecture- Improving the Author display in filter list
  • 011 View Lecture- Model object metadata
  • 012 View Lecture- Referencing Admin URLs
  • 013 View Lecture- Improving the Author models list display
  • 014 View Lecture- Testing with the Admin
  • 015 View Lecture- Setting up an Admin model test
  • 016 View Lecture- Writing an Admin model test
  • 017 View Lecture- There is more depth in the Admin

  • 6
  • 01 View Lecture- Chapter concepts
  • 02 View Lecture- Create a user via the Admin
  • 03 View Lecture- Authentication vs authorization
  • 04 View Lecture- People app- an app with users
  • 05 View Lecture- Authenticated profile details view
  • 06 View Lecture- Adding the profile HTML template
  • 07 View Lecture- Register profile URL patterns
  • 08 View Lecture- Viewing the profile pages
  • 09 View Lecture- Verifying login required checks
  • 010 View Lecture- Authorization templates
  • 011 View Lecture- Setting update Django contrib auth
  • 012 View Lecture- Login template
  • 013 View Lecture- Where to go after login
  • 014 View Lecture- Creating a nav bar
  • 015 View Lecture- Testing login
  • 016 View Lecture- Changing passwords
  • 017 View Lecture- Password changed success
  • 018 View Lecture- Django and email
  • 019 View Lecture- Reset email with console output config
  • 020 View Lecture- Email contents for reset email
  • 021 View Lecture- Password reset done page
  • 022 View Lecture- Reset confirm HTML
  • 023 View Lecture- Reset success HTML
  • 024 View Lecture- Add forgot password to login
  • 025 View Lecture- Branded error screens
  • 026 View Lecture- Customizing the user model
  • 027 View Lecture- Add profile to user object
  • 028 View Lecture- Registering a user-created signal callback
  • 029 View Lecture- Adding the user profile to Django admin
  • 030 View Lecture- Demo- user testing
  • 031 View Lecture- Chapter review

  • 7
  • 01 View Lecture- Post introduction
  • 02 View Lecture- Field validators and model constraints
  • 03 View Lecture- Adding a ReviewModel with field validation
  • 04 View Lecture- Adding constraints to the ReviewModel
  • 05 View Lecture- Writing an Admin class for the ReviewModel
  • 06 View Lecture- Link to the users reviews in the Django Admin
  • 07 View Lecture- Configuring PyCharm with Djangos dev server
  • 08 View Lecture- Demo- ReviewModel in Django Admin
  • 09 View Lecture- Add a view for a book
  • 010 View Lecture- HTTP GET and POST methods
  • 011 View Lecture- Building a ModelForm based on the ReviewModel
  • 012 View Lecture- Writing a view that fills review forms
  • 013 View Lecture- Registering named URLs
  • 014 View Lecture- Creating the review book template
  • 015 View Lecture- Demo- Writing a review
  • 016 View Lecture- Replacing hard-coded URLs with named ones
  • 017 View Lecture- Testing Django forms
  • 018 View Lecture- Reviewing the chapter

  • 8
  • 01 View Lecture- Intro to web uploads
  • 02 View Lecture- Uploading images using forms
  • 03 View Lecture- Adding an ImageField and configuring media files
  • 04 View Lecture- Making the development server host media files
  • 05 View Lecture- Creating an upload directory and migrating DB changes
  • 06 View Lecture- Using the Django Admin to upload an authors picture
  • 07 View Lecture- Server-side filenames
  • 08 View Lecture- Writing an upload view
  • 09 View Lecture- Url configuration for the upload view
  • 010 View Lecture- Upload view template
  • 011 View Lecture- Demo- Image upload form
  • 012 View Lecture- The trouble with user uploads
  • 013 View Lecture- Testing an upload view
  • 014 View Lecture- Chapter review

  • 9
  • 01 View Lecture- Intro to commands
  • 02 View Lecture- Management commands provided by Django
  • 03 View Lecture- Structure of a management command
  • 04 View Lecture- Your first management command
  • 05 View Lecture- Running the authors command
  • 06 View Lecture- Writing management commands with arguments
  • 07 View Lecture- Running the book command
  • 08 View Lecture- Testing management commands
  • 09 View Lecture- Chapter review

  • 10
  • 01 View Lecture- Intro to migrations
  • 02 View Lecture- An initial migration script
  • 03 View Lecture- Migration and the database
  • 04 View Lecture- Adding a column to the Song model
  • 05 View Lecture- A second migration script
  • 06 View Lecture- Migrating to a specific point including backwards
  • 07 View Lecture- Djangos migrations table
  • 08 View Lecture- More management commands
  • 09 View Lecture- Squashing migrations together
  • 010 View Lecture- Chapter review

  • 11
  • 01 View Lecture- Intro to deployment
  • 02 View Lecture- Deployment considerations
  • 03 View Lecture- Parts of a web page are served differently
  • 04 View Lecture- Managing static files
  • 05 View Lecture- Protecting media files
  • 06 View Lecture- Key and secret management
  • 07 View Lecture- Hosting example- Opalstack
  • 08 View Lecture- Hosting example- Heroku
  • 09 View Lecture- Chapter review

  • 12
  • 01 View Lecture- Intro to the libraries
  • 02 View Lecture- Installing third party libraries
  • 03 View Lecture- Django Admin styling with Grappelli
  • 04 View Lecture- Grappelli in action
  • 05 View Lecture- REST APIs with Django REST Framework
  • 06 View Lecture- Writing DRF code
  • 07 View Lecture- DRF browser view
  • 08 View Lecture- Django Debug Toolbar
  • 09 View Lecture- Using the Debug Toolbar

  • 13
  • 01 View Lecture- Congrats
  • 02 View Lecture- New projects and their structure
  • 03 View Lecture- Mapping URLs
  • 04 View Lecture- View functions
  • 05 View Lecture- Template engine
  • 06 View Lecture- Data object models
  • 07 View Lecture- User management
  • 08 View Lecture- Forms and uploads
  • 09 View Lecture- Management commands
  • 010 View Lecture- Migration and deployment
  • 011 View Lecture- Third party libraries
  • 012 View Lecture- Conclusion and contact info
  • 45,900 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    شناسه: 9439
    حجم: 1272 مگابایت
    مدت زمان: 355 دقیقه
    تاریخ انتشار: 22 فروردین 1402
    طراحی سایت و خدمات سئو

    45,900 تومان
    افزودن به سبد خرید