{% extends 'base.html' %} {% load static %} {% block title %} Favorite List {% endblock %} {% block content %} Wish list {% if favorites.count > 0 %} {% for trending in favorites %} {{ trending.job.title }} {{ trending.job.company_name }} {{ trending.job.location }} Posted {{ trending.job.created_at|timesince }} {% endfor %} {% else %} Empty favorite list! {% endif %} {% endblock %} {% block javascripts %} {% endblock %}
{{ trending.job.company_name }}
Posted {{ trending.job.created_at|timesince }}