{% extends 'base.html' %} {% block title %}Home{% endblock %} {% block content %} {% load static %}
{% include 'snippets/left-menu.html' %}
{% include 'home_main_content.html' %} {% for i in post_list %}
{{ i.user.username }} {{ i.date_post }} Ago

{% if i.user_post %}

{{ i.user_post }}

{% endif %}
{% if i.file %} {% if i.file.url|slice:"-4:" == ".MP4" or i.file.url|slice:"-4:" == ".mp4" %} {% else %} {% endif %} {% endif %}


Like
Comment



{% endfor %}
{% include 'snippets/right-data.html' %}
{% endblock %}