data_capture/templates/data_capture/price_list/upload_examples/MAS_Consolidated.html

Summary

Maintainability
Test Coverage
{% load static %}

<p>
  For MAS Consolidated, this is your completed Price Proposal Template.
  We'll only read the <strong>{{ sheet_name }}</strong> tab. It
  should look like this:
</p>

<div class="excel-wrapper">
  <table class="excel">
    {% for row in sheet_rows %}
    <tr>
      {% for column in row %}
        <td>{{ column }}</td>
      {% endfor %}
    </tr>
    {% endfor %}
  </table>
</div>


<p>
  If you're not using a spreadsheet like this, please download and
  fill out the <a href="{% static 'data_capture/Price_Proposal_Template_SERVICES_AND_TRAINING_FINAL.xlsx' %}">MAS Consolidated Price List Template</a>.
</p>

{% if show_debug_ui %}
<div class="dev-note">
  <strong>Developers:</strong>
  Download <a href="{% static 'data_capture/Price_Proposal_Template_SERVICES_AND_TRAINING_FINAL.xlsx' %}"><code>Price Proposal Template_SERVICES AND TRAINING_FINAL.xlsx</code></a>
  to use as an example.
</div>
{% endif %}