2017-02-14 15:25:28 +01:00
|
|
|
<div class="alert alert-warning m-t">
|
|
|
|
{{ 'pricing.these_prices_match_space_hours_rates_' | translate }} <span class="font-bold" translate>{{ 'pricing._without_subscriptions' }}</span>.
|
|
|
|
</div>
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th style="width:20%" translate>{{ 'pricing.spaces' }}</th>
|
2017-10-10 15:44:17 +02:00
|
|
|
<th style="width:20%" ng-repeat="group in enabledGroups">
|
2017-02-14 15:25:28 +01:00
|
|
|
<span class="text-u-c text-sm">{{group.name}}</span>
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-10-11 15:50:18 +02:00
|
|
|
<tr ng-repeat="space in enabledSpaces">
|
2017-02-14 15:25:28 +01:00
|
|
|
<td>
|
|
|
|
{{ space.name }}
|
|
|
|
</td>
|
2017-10-05 17:54:44 +02:00
|
|
|
<td ng-repeat="group in enabledGroups">
|
2017-02-14 15:25:28 +01:00
|
|
|
<span editable-number="findPriceBy(spacesPrices, space.id, group.id).amount"
|
2017-11-02 15:33:56 +01:00
|
|
|
e-step="any"
|
2017-02-14 15:25:28 +01:00
|
|
|
onbeforesave="updatePrice($data, findPriceBy(spacesPrices, space.id, group.id))">
|
|
|
|
{{ findPriceBy(spacesPrices, space.id, group.id).amount | currency}}
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|