unserver-unify
Version:
18 lines • 1.25 kB
HTML
<div class="mbl_survey" ng-controller="surveyListCtrl as ctrl">
<div class="tag-box tag-box-v6 clearfix" style="margin-bottom: 0px; background: rgb(158, 208, 97); padding:10px 5px;" >
<div style="float:left; width:30%"><strong>{{ {eng:'Name', chn:'问卷名称'} | trans}}</strong></div>
<div style="float:right; width:67%"><strong>{{ {eng:'Description', chn:'问卷详情'} | trans}}</strong></div>
</div>
<div ng-if="ctrl.displaySurveys | isEmpty" class="no_record" translate="">
No record
</div>
<div class="thumbnails thumbnail-style thumbnail-kenburn survey_list overflow-hidden" ng-repeat="survey in ctrl.displaySurveys">
<div class="thumbnail-img" style="font-size:14px; line-height:14px; background:#fff;"><a ui-sref="index.survey.detail({id: survey._id})" style="font-size:13px; line-height:14px;">{{survey.name}}</a></div>
<div class="mbl_list_right">
<div class="caption overflow-hidden clst" style="height:50px;">
<h3 style="max-height:35px; overflow:hidden;"><a ui-sref="index.survey.detail({id: survey._id})">{{survey.description}}</a></h3>
<span class="date_font smal ng-binding">{{survey.created | date : mediumDate}}</span>
</div>
</div>
</div>
</div>