Commit 6d95c3a146a853fa5cf0d172af905f2835826935
1 parent
aafae19a
Exists in
master
and in
12 other branches
adding group category and body
Showing
2 changed files
with
7 additions
and
1 deletions
Show diff stats
index.html
... | ... | @@ -33,7 +33,13 @@ |
33 | 33 | <ul id='proposal-item-{{id}}' class='proposal-category-item hide'> |
34 | 34 | {{#each ../article.children}} |
35 | 35 | <li class="proposal-item"> |
36 | + <ul class='category'> | |
37 | + {{#each categories}} | |
38 | + <li>{{name}}</li> | |
39 | + {{/each}} | |
40 | + </ul> | |
36 | 41 | {{#link title id}}{{/link}} |
42 | + <p>{{body}}</p> | |
37 | 43 | </li> |
38 | 44 | {{/each}} |
39 | 45 | </ul> | ... | ... |
js/main.js
... | ... | @@ -34,7 +34,7 @@ $.getJSON(noosferoAPI) |
34 | 34 | $('#nav-proposal-categories a').addClass('active'); |
35 | 35 | $('#nav-proposal-group a').removeClass('active'); |
36 | 36 | }else if(item == 'proposal-group'){ |
37 | - //Display the Topics or Discussions | |
37 | + //Display the Topics or Discussions tab | |
38 | 38 | $('#proposal-categories').hide(); |
39 | 39 | $('#proposal-group').show(); |
40 | 40 | $('#nav-proposal-group a').addClass('active'); | ... | ... |