Answers for "django media settings"

1

managing media in django

#in base url  
from django.conf import settings
from django.conf.urls.static import static

urlpatterns = [
    # ... the rest of your URLconf goes here ...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
#in setting
MEDIA_URL='/media/
MEDIA_ROOT=BASE_DIR / 'media'
Posted by: Guest on April-29-2021
1

managing media in django

from django.conf import settings
from django.conf.urls.static import static

urlpatterns = [
    # ... the rest of your URLconf goes here ...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
Posted by: Guest on April-29-2021
1

where we can store image in django project to so that t can work in html file

{% load static %}
<img src="{% static 'my_app/example.jpg' %}" alt="My image">
Posted by: Guest on November-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language