Sha256: e67c9ab45c733bae8635fe2c6ca9e68d5473e244096829f2b65679ee8f3a6439

Contents?: true

Size: 1.9 KB

Versions: 10

Compression:

Stored size: 1.9 KB

Contents

<h2 class="section-title">Marketplace</h2>
<div class="spacer2"></div>

<div class="row dashboard-marketplace">
  <!-- Loader -->
  <div class="col-md-12 text-center" ng-show="isLoading">
    <img ng-src="{{assetPath['mno_enterprise/loader-32x32-bg-main.gif']}}" alt="Loading"/>
  </div>

  <!-------------------------------------->
  <!--        Marketplace Content       -->
  <!-------------------------------------->
  <div class="col-md-12" ng-show="!isLoading">
    <!-- Marketplace nav -->
    <div class="row">
      <div class="marketplace-nav">
        <div class="col-sm-4">
          <select class="form-control" ng-model="selectedCategory" ng-options="elem for elem in categories" ng-change="searchTerm = ''">
            <option value=''>All</option>
          </select>
        </div>
        <div class="col-sm-4">
          <input type="text" class="form-control" placeholder="Search..." ng-model="searchTerm" ng-change="selectedCategory = ''"/>
        </div>
      </div>
    </div>
    
    <!-- Marketplace list -->
    <div class="row">
      <div class="marketplace-list">
        
        <!-- App Cards-->
        <div class="col-sm-6 col-md-4" ng-repeat="app in apps | filter:appsFilter | filter:searchTerm">
         
          <a class="marketplace-app-card" ng-href="{{linkFor(app)}}">
            <div class="media">
              <div class="pull-left">
                <img class="media-object" ng-src="{{app.logo}}" ng-alt="{{app.name}}">
              </div>
              <div class="media-body">
                <h4 class="media-heading">{{app.name}}</h4>
                {{app.tiny_description}}
              </div>
              <div class="arrow">
                <i class="fa fa-caret-right fa-2x"></i>
              </div>
            </div>
          </a>
          
        </div>
        
        <!-- End: marketplace-list -->
      </div>
      
      <!-- End: row -->
    </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/marketplace/index.html
mno-enterprise-frontend-2.0.8 app/assets/templates/mno_enterprise/dashboard/marketplace/index.html
mno-enterprise-frontend-2.0.7 app/assets/templates/mno_enterprise/dashboard/marketplace/index.html
mno-enterprise-frontend-2.0.6 app/assets/templates/mno_enterprise/dashboard/marketplace/index.html
mno-enterprise-frontend-2.0.5 app/assets/templates/mno_enterprise/dashboard/marketplace/index.html
mno-enterprise-frontend-2.0.4 app/assets/templates/mno_enterprise/dashboard/marketplace/index.html
mno-enterprise-frontend-2.0.3 app/assets/templates/mno_enterprise/dashboard/marketplace/index.html
mno-enterprise-frontend-2.0.2 app/assets/templates/mno_enterprise/dashboard/marketplace/index.html
mno-enterprise-frontend-2.0.1 app/assets/templates/mno_enterprise/dashboard/marketplace/index.html
mno-enterprise-frontend-2.0.0 app/assets/templates/mno_enterprise/dashboard/marketplace/index.html