Loading...
Started by Ryan Ginsberg • Apr 25, 2025 7:16 AM
Total Replies
7
Participants
2
Activity
Quiet
Duration
7:16 AM
Thread starter
{% set wells = contact.json_html_data | from_json %}
{% if wells and wells|length > 0 %}
<table>
<thead>
<tr>
<th>Wellpad ID</th>
<th>Number of Wells</th>
<th>Frac End</th>
<th>Status</th>
<th>IP Rate (k)</th>
<th>Total Gas (Bcf/d)</th>
</tr>
</thead>
<tbody>
{% for well in wells %}
<tr>
<td>{{ well.wellpad_id }}</td>
<td>{{ well.num_wells }}</td>
<td>{{ well.frac_end }}</td>
<td>{{ well.status }}</td>
<td>{{ well.ip_rate }}</td>
<td>{{ well.total_gas }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p>No well data available for this contact.</p>
{% endif %}7 messages in thread