

YouAndWeb_TwoToc
a2ecfb85282bb782ae96a40499c728d5c266f710
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
<navbar></navbar> <div class="main-container container"> <div class="row"> <div class="col-sm-8"> <div class="poster poster_show"><img ng-src="/uploads/{{ item.image }}"></div> <h1>{{ item.title | uppercase }}</h1> {{ item.description }} <hr> <h2>{{ 'INFORMAZIONI_AGGIUNTIVE' | translate }}</h2> {{ item.info }} <hr> <h2>{{ 'SERVIZI' | translate }}</h2> <ul class="list-inline clearfix"> <li class="col-sm-4" ng-repeat="service in item.services">{{ service | translate }}</li> </ul> <div class="box-default box-user"> <div class="row"> <div class="pull-left"> <img src="/assets/images/avatar.png" width="150" class="avatar"> </div> <h1>{{ item.user.name }}</h1> <p><span class="glyphicon glyphicon-map-marker userinfo"></span> {{ item.user.place }}</p> <p><span class="glyphicon glyphicon-time userinfo"></span> su Two Toc da {{ diffDate | date: 'd' }} giorni</p> <p><rating ng-model="item.user.rating" max="5" readonly="true" class="rating userinfo"></rating> {{ item.user.ratingCount }} voti</p> </div> <div class="row" ng-repeat="comment in comments"> <div class="col-xs-2"> <img src="/assets/images/avatar.png" class="avatar"> </div> <div class="col-xs-10 box-comment"> <p><b>{{ comment.user.name }}</b></p> <p>{{ comment.text }}</p> <ul class="list-inline"> <li><b>{{ 'VOTO' | translate }}</b><rating ng-model="comment.rating" max="5" readonly="true" class="rating"></rating></li> <li><b>{{ 'PULIZIA' | translate }}</b><rating ng-model="comment.ratingPulizia" max="5" readonly="true" class="rating"></rating></li> <li><b>{{ 'ATMOSFERA' | translate }}</b><rating ng-model="comment.ratingAtmosfera" max="5" readonly="true" class="rating"></rating></li> </ul> </div> </div> <div class="row text-center"> <button class="btn btn-default" ng-click="loadComments()">{{'CARICA ALTRO' | translate}}</button><br><br> </div> </div> </div> <div class="col-sm-4"></div> </div> </div> <footer></footer> |
Commits for YouAndWeb_TwoToc/client/app/partecipa/show/show.html
Revision | Author | Commited | Message |
---|---|---|---|
a2ecfb ... | PTKDev | Fri 20 Nov, 2015 11:22:35 +0000 | TwoToc code |