mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
<div class="row m-t m-b padder" ng-repeat="plansGroup in plansClassifiedByGroup" ng-if="ctrl.member.group_id == plansGroup.id || !ctrl.member" ng-show="plansAreShown">
|
|
<div class="col-md-12 text-center">
|
|
<h2 class="text-u-c">{{ plansGroup.name }}</h2>
|
|
</div>
|
|
|
|
<div class="row row-centered padder">
|
|
<div class="col-xs-12 col-md-12 col-lg-10 col-centered no-gutter">
|
|
|
|
<!-- ng-class directive center the last item if the list length is odd -->
|
|
<div class="pricing-panel col-xs-6 col-md-6 col-lg-6 text-center"
|
|
ng-class="{'col-md-12 col-lg-12':(plansGroup.plans.filter(filterDisabledPlans).length % 2 == 1 && key == plansGroup.plans.filter(filterDisabledPlans).length-1)}"
|
|
ng-repeat="(key, plan) in plansGroup.plans.filter(filterDisabledPlans) | orderBy:'interval'">
|
|
|
|
<plan-card plan="plan"
|
|
user="ctrl.member"
|
|
operator="currentUser"
|
|
on-select-plan="selectPlan"
|
|
is-selected="isSelected(plan)">
|
|
</plan-card>
|
|
|
|
</div>
|
|
|
|
<a class="m-t-lg btn btn-small btn-default pull-right" href="#" ng-click="doNotSubscribePlan($event)">{{ 'app.shared.plan_subscribe.do_not_subscribe' | translate }} <i class="fa fa-long-arrow-right"></i></a>
|
|
|
|
</div>
|
|
|
|
<div class="row row-centered m-t-lg">
|
|
<div class="col-xs-12 col-md-12 col-lg-10 col-centered no-gutter">
|
|
<uib-alert type="warning m">
|
|
<i class="fa fa-lightbulb-o"></i>
|
|
<span ng-bind-html="subscriptionExplicationsAlert"></span>
|
|
</uib-alert>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|