Skip to content

Commit

Permalink
same "fairness" to users > user > activities
Browse files Browse the repository at this point in the history
  • Loading branch information
fjendle committed Mar 22, 2012
1 parent 6da4695 commit c938ff1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 20 deletions.
4 changes: 2 additions & 2 deletions templates/usergrid.ui.panels.activities.list.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<tr class="">
<!--<td class="query-result-td-checkbox"><input type="checkbox" name="${name}" id="${id}" value="${entity.uuid}" /></td>-->
<td class="created">
${created} </br>
${created} <br />
<strong>${entity.content}</strong>
</td>
<td class="actor">
Expand All @@ -13,7 +13,7 @@
</a>
</td>
<td class="verb">
- ${entity.verb}
${entity.verb}
</td>
</tr>
</table>
Expand Down
41 changes: 23 additions & 18 deletions templates/usergrid.ui.panels.user.activities.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,28 @@ <h3>
</div>
</h3>
<div class="console-section-contents listContent">
{{if activities}}
{{each activities}}
<div class="query-result-row entity_list_item">
<table class="query-result-table">
<tr class="query-result-header">
<!--<td class="query-result-td-checkbox"><input type="checkbox" name="${name}" id="${id}" value="${entity.uuid}" /></td>-->
<td class="query-result-td-header-name">
<div class="query-result-header-name query-result-picture-vert-offset">
<span id="activities-date-field">${$value.created}</span>: ${$value.actor.displayName} (${$value.actor.email}) - ${$value.verb}: ${$value.content}
</div>
</td>
</tr>
</table>
</div>
{{/each}}
{{else}}
<div class="user-panel-section-message">No User Activities</div>
{{/if}}
{{if activities}}
{{each activities}}
<div class="query-result-row entity_list_item">
<table class="query-result-table activities-table table">
<tr class="">
<!--<td class="query-result-td-checkbox"><input type="checkbox" name="${name}" id="${id}" value="${entity.uuid}" /></td>-->
<td class="created">
${$value.created}<br />
<strong>${$value.content}</strong>
</td>
<td class="actor">
<strong>${$value.actor.displayName} (${$value.actor.email}) </strong>
</td>
<td class="verb">
${$value.verb}
</td>
</tr>
</table>
</div>
{{/each}}
{{else}}
<div class="user-panel-section-message">No User Activities</div>
{{/if}}
</div>
</div>

0 comments on commit c938ff1

Please sign in to comment.