Browse code

Version 1.5 initial commit

Benjamin Roth authored on24/06/2024 12:06:17
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,10 @@
1
+<tr class="member_list_table_item">
2
+  <?php foreach ($this->fields as $k => $v): ?>
3
+    <td class="<?= $k ?>"><?= $v ?></td>
4
+  <?php endforeach; ?>
5
+  <?php if ($this->link): ?>
6
+    <td class="detail-link">
7
+      <a href="<?=$this->link?>"><?= $this->trans('MSC.memberDetail') ?></a>
8
+    </td>
9
+  <?php endif; ?>
10
+</tr>