{% extends "base.html" %} {% block title %}Follow Companies{% endblock %} {% block content %}

Follow Companies


All Companies
    {% for comp in companies %}
  • {{ comp.name }} {% if comp.id in existing_interests %} Following {% else %}
    {% endif %}
  • {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}