intial load more
This commit is contained in:
parent
0b8b89f1d4
commit
813937dd22
|
@ -1 +1,6 @@
|
|||
export default Ember.Controller.extend({});
|
||||
export default Ember.Controller.extend({
|
||||
actions: {
|
||||
loadMore() {
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
|
||||
<h2>{{i18n 'discourse_patrons.title' site_name=siteSettings.title}}</h2>
|
||||
|
||||
<table class="table discourse_patrons_admin">
|
||||
{{#load-more selector=".discourse-patrons-admin tr" action=(action "loadMore")}}
|
||||
{{#if model}}
|
||||
<table class="table discourse-patrons-admin">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{i18n 'discourse_patrons.admin.table.head.user'}}</th>
|
||||
|
@ -25,3 +27,5 @@
|
|||
</tr>
|
||||
{{/each}}
|
||||
</table>
|
||||
{{/if}}
|
||||
{{/load-more}}
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
.discourse_patrons_admin {
|
||||
.discourse-patrons-admin {
|
||||
.amount {
|
||||
text-align: right;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue