{% extends "base.html" %} {% load static %} {% block content %}

Company Listing

{% for obj in companiesview %}
Company Name{{ obj.company_name }}
First Name{{ obj.first_name }}
Last Name{{ obj.last_name }}
Country{{ obj.country }}
Email{{ obj.email }}
Contact No{{ obj.contact_no }}
{% for cps in obj.companypackages_set.all %} {% endfor %}
Package Concurrent Users Well Manager Well Engineer Viewers
{{ cps.package}} {{ cps.concurrent_users}} {{ cps.well_managers}} {{ cps.well_engineers}} {{ cps.other_users}}
{% endfor %} {% endblock %}