Sha256: c3629cd53ffb755ed5979e59ce1b44a618f9154ce11dfa8bd0bb3988784e087a

Contents?: true

Size: 1.06 KB

Versions: 10

Compression:

Stored size: 1.06 KB

Contents

<div class="table-cell">
  <div class="row th-row hidden-xs">
    <div class="cell col-sm-3">Period</div>
    <div class="cell col-sm-3">Amount</div>
    <div class="cell col-sm-3">Paid</div>
    <div class="cell col-sm-3 text-center">Download</div>
  </div>

  <div class="row td-row" ng-repeat="invoice in invoices">
    <div class="cell col-sm-3">
      <span class="cell-label visible-xs-inline">Period: <br/></span>
      {{ invoice.period }}
    </div>

    <div class="cell col-sm-3">
      <span class="cell-label visible-xs-inline">Amount: </span>{{ invoice.amount.value | currency: invoice.amount.options.symbol }} ({{ invoice.amount.options.iso_code }})</div>

    <div class="cell col-sm-3"><span class="cell-label visible-xs-inline">Paid: </span>{{ {true: 'Yes', false:'No'}[invoice.paid] }}</div>

    <div class="cell col-sm-3 text-center">
      <a ng-href="{{invoice.link}}" target="_blank" class="btn btn-sm">
        <i class="fa fa-cloud-download"></i>
        <span class="cell-label visible-xs-inline"><br/>Download</span>
      </a>
    </div>
  </div>
</div>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mno-enterprise-frontend-2.0.9 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
mno-enterprise-frontend-2.0.8 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
mno-enterprise-frontend-2.0.7 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
mno-enterprise-frontend-2.0.6 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
mno-enterprise-frontend-2.0.5 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
mno-enterprise-frontend-2.0.4 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
mno-enterprise-frontend-2.0.3 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
mno-enterprise-frontend-2.0.2 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
mno-enterprise-frontend-2.0.1 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html
mno-enterprise-frontend-2.0.0 app/assets/templates/mno_enterprise/dashboard/organization/invoices.html