Coder Social home page Coder Social logo

py-taxi-service-startproject's Introduction

Taxi service startproject

In this task, you will start project Taxi service.

  1. Create a virtual environment, activate it, and install django via pip. Remember, everything you will do in this project, do with activated virtual environment.
  2. Start project taxi_service inside the current directory (add . at the end of the command). You should have such structure:
py-taxi-service
|-> venv
|-> manage.py
|-> taxi_service
    |-> __init__.py
    |-> settings.py
    ...
  1. Inside py-taxi-service start application taxi. Don't forget to register this app in settings.
  2. Inside taxi/models.py create models according to this diagram:

image

Note: licence_number field should be unique.

  1. You have noticed that Driver inherits from AbstractUser. It means that the standard User model should be replaced with the model Driver. Notice, that Driver has an additional field compared to the standard User. Don't forget to register it in settings. To make correct model name display in the admin, add verbose_name and verbose_name_plural inside Driver model.

  2. Edit admin.py:

    • Register all your models in the admin.
    • Make Driver's field licence_number be displayed as the other field.
    • Add licence_number to the fieldsets, so you can edit this field while updating Driver.
    • Add licence_number to the add_fieldset so you can fill this field while adding a driver.
    • Make it possible to search Car by model.
    • Make it possible to filter Car by manufacturer.
  3. Make migrations and migrate.

py-taxi-service-startproject's People

Contributors

masterpieceelbow avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.