Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
221 views
in Technique[技术] by (71.8m points)

Django Default Image is showing

why i can't see default image here below are my model and profile.html file:

Model:

from django.db import models
from django.contrib.auth.models import User
# Create your models here.

class Profile(models.Model):
    user = models.OneToOneField(User,on_delete=models.CASCADE)
    image = models.ImageField(upload_to='profile_pics',default='default.jpg')

    def __str__(self):
        return f'{self.user.username} Profile'

Profile.html:

{% extends 'blog/base.html' %}
    {% load crispy_forms_tags %}
    {% block content %}
        <div class="content-section">
            <div class="media">
            <img class="rounded-circle account-img" src="{{ user.profile.image.url }}">
            <div class="media-body">
                <h2 class="account-heading">{{ user.username }}</h2>
                <p class="text-secondary">{{user.email}}</p>
            </div>
            </div>
            <!-- FORM HERE -->
        </div>
    {% endblock content %}

Thank you in advance...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

in templates you can check the image exists or not, if not can show a default image from static file as follows

 {% if user.profile.image %}
 <img src="{{ user.profile.image.url }}">
 {% else %}
 <img src="{% static 'img/default.png' %}">
 {% endif %}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...