[PYTHON] Comment utiliser Django3.x + heroku + cloudinary

Contexte

Aperçu

Contrôle de fonctionnement

blog.html


<a href="{% url 'blog:post_detail' post.id %}">
     <img class="card-img-top" src="{{ post.image.url }}" alt="{{ post.title }}">
</a>
  • Aucune image affichée </ font>

blog.html


<a href="{% url 'blog:post_detail' post.id %}">
     <img class="card-img-top" src="{{ test_model_instance.image.url }}" alt="{{ test_model_instance.image.name }}">
</a>

Recommended Posts