1 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,14 +0,0 @@ |
1 |
-<?php $this->extend('block_unsearchable'); ?> |
|
2 |
- |
|
3 |
-<?php $this->block('content'); ?> |
|
4 |
- |
|
5 |
-<?php if (empty($this->members)): ?> |
|
6 |
- <p class="empty message"><?=$this->empty?></p> |
|
7 |
-<?php else: ?> |
|
8 |
- <?php foreach ($this->members as $member): ?> |
|
9 |
- <?=$member?> |
|
10 |
- <?php endforeach; ?> |
|
11 |
- <?= $this->pagination ?> |
|
12 |
-<?php endif; ?> |
|
13 |
- |
|
14 |
-<?php $this->endblock(); ?> |
... | ... |
@@ -2,12 +2,13 @@ |
2 | 2 |
|
3 | 3 |
<?php $this->block('content'); ?> |
4 | 4 |
|
5 |
-<?php if ($this->members): ?> |
|
5 |
+<?php if (empty($this->members)): ?> |
|
6 |
+ <p class="empty message"><?=$this->empty?></p> |
|
7 |
+<?php else: ?> |
|
6 | 8 |
<?php foreach ($this->members as $member): ?> |
7 |
- <?=$member?> |
|
9 |
+ <?=$member?> |
|
8 | 10 |
<?php endforeach; ?> |
9 |
-<?php else: ?> |
|
10 |
- <p class="empty message"><?=$this->empty?></p> |
|
11 |
+ <?= $this->pagination ?> |
|
11 | 12 |
<?php endif; ?> |
12 | 13 |
|
13 | 14 |
<?php $this->endblock(); ?> |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,13 @@ |
1 |
+<?php $this->extend('block_unsearchable'); ?> |
|
2 |
+ |
|
3 |
+<?php $this->block('content'); ?> |
|
4 |
+ |
|
5 |
+<?php if ($this->members): ?> |
|
6 |
+ <?php foreach ($this->members as $member): ?> |
|
7 |
+ <?=$member?> |
|
8 |
+ <?php endforeach; ?> |
|
9 |
+<?php else: ?> |
|
10 |
+ <p class="empty message"><?=$this->empty?></p> |
|
11 |
+<?php endif; ?> |
|
12 |
+ |
|
13 |
+<?php $this->endblock(); ?> |