Django and DRF
315 subscribers
98 photos
39 files
161 links
Purpose is sharing, spreading knowledge which is most related to the Django and Django Rest Framework(DRF)

You can find in here my
- Articles
- Projects with source codes
- Videos
and another useful stuffs
Download Telegram
https://link.medium.com/VyKI3BxHaib

For read

Started date --> 25.10.2021
https://persistent-nasir.medium.com/build-rest-api-using-drf-8e1c863b68d
For Read

started date —> 25.10.2021 23:15

finished date —> 25.10.2021 23:20
Forwarded from WEB BOOKS uz
Aratyn_T_Building_Django_2_0_Web.pdf
2.3 MB
🇬🇧Building Django 2.0 Web Applications

Автор:
Tom Aratyn
Год издания: 2018


🇺🇿Django 2.0 veb-dasturlarini yaratish

Muallif:
Tom Aratyn
Nashr qilingan yil: 2018 yil
#Django

Do'stlarga ham ulashing!
📚 @WebBooksUz
🔈 @html_css_js_kodlari_uz
max_digits bilan decimal_places vazifasi nima? misol uchun:
max_digits = 3
decimal_places = 2
9.99 nuqtadan keyin 2 ta raqam chegarasi decimal_places orqali beriladi, umumiy raqamlar chegarasi max_digits bn beriladi
Forms creating
Static fayllar configuratsiyasi settings.py da

STATIC_URL = '/static/'

MEDIA_URL = '/images/'

STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'

STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static')
]
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')

MEDIA_ROOT = os.path.join(BASE_DIR, 'static/images')