If it helps, my template looks like this:

{% extends "photomanager/base.html" %}
{% block content %}
<div class="row">
  <div class="col-md-4">
    <!-- sidebar would go here -->
  </div>
  <div class="col-md-8">
    {% if latest.photo %}
      <a href="{% url 'post-detail' latest.slug %}"><img src="{{ 
latest.photo.picture.url }}" alt="{{ latest.photo.title }}" 
class="img-fluid"></a>
      <p>Photographer: {{ latest.photo.photographer }}</p>
      <p>Caption: {{ latest.photo.caption }}</p>
    {% endif %}
    <h2><a href="{% url 'post-detail' latest.slug %}">{{ latest.title }}</a
></h2>
    <div class="">
      {{ latest.content | safe }}
      <hr>
    </div>
    <div class="row">
      <div class="col-md-6 col-sm-12">
        {% for post in first_column %}
          {% if post.photo %}
            <a href="{% url 'post-detail' post.slug %}"><img src="{{ 
post.photo.picture.url }}" alt="{{ post.photo.title }}" class="img-fluid"></
a>
          {% endif %}
          <h3><a href="{% url 'post-detail' post.slug %}">{{ post.title }}</
a></h3>
          <div class="">
            <hr>
          </div>
        {% endfor %}
      </div>
      <div class="col-md-6 col-sm-12">
        {% for post in second_column %}
          {% if post.photo %}
            <a href="{% url 'post-detail' post.slug %}"><img src="{{ 
post.photo.picture.url }}" alt="{{ post.photo.title }}" class="img-fluid"></
a>
          {% endif %}
          <h3><a href="{% url 'post-detail' post.slug %}">{{ post.title }}</
a></h3>
          <div class="">
            <hr>
          </div>
        {% endfor %}
      </div>
    </div>
  </div>
</div>
{% endblock content %}



-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7c217391-1714-4744-a31f-e46a54aef770%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to