Commit 92ddd856d07bf3a011dc96d658daf595dd367ef8
1 parent
e098bd3c
Exists in
master
and in
4 other branches
quantidade de propostas nos programas
Showing
1 changed file
with
12 additions
and
5 deletions
Show diff stats
src/app/components/article-box/article-box.html
... | ... | @@ -16,11 +16,18 @@ |
16 | 16 | <h1>{{::vm.article.title}}</h1> |
17 | 17 | </div> |
18 | 18 | <div class="article-box--abstract" ng-bind-html="vm.article.summary"></div> |
19 | - <div class="button--themed"> | |
20 | - <button class="btn btn-block"> | |
21 | - <span ng-show="{{::vm.article.archived}}">Veja as respostas</span> | |
22 | - <span ng-show="{{::!vm.article.archived}}">Participe</span> | |
23 | - </button> | |
19 | + <div class="row"> | |
20 | + <div class="col-sm-4 col-middle text-center"> | |
21 | + <span>{{::vm.article.children_count}} Propostas nesse programa</span> | |
22 | + </div> | |
23 | + <div class="col-sm-8"> | |
24 | + <div class="button--themed"> | |
25 | + <button class="btn btn-block"> | |
26 | + <span ng-show="{{::vm.article.archived}}">Veja as respostas</span> | |
27 | + <span ng-show="{{::!vm.article.archived}}">Participe</span> | |
28 | + </button> | |
29 | + </div> | |
30 | + </div> | |
24 | 31 | </div> |
25 | 32 | </div> |
26 | 33 | </article> | ... | ... |