diff --git a/dist/css/tabler.css.map b/dist/css/tabler.css.map index 79f3635ed..0685904e8 100644 Binary files a/dist/css/tabler.css.map and b/dist/css/tabler.css.map differ diff --git a/pages/_data/menu.yml b/pages/_data/menu.yml index 459cb9872..89c2173c0 100644 --- a/pages/_data/menu.yml +++ b/pages/_data/menu.yml @@ -52,6 +52,9 @@ base: cards: url: cards.html title: Cards + datatables: + url: datatables.html + title: Data Tables calendar: title: Calendar url: calendar.html diff --git a/pages/_includes/cards/invoices.html b/pages/_includes/cards/invoices.html index 6fd7f51eb..00f4a613b 100644 --- a/pages/_includes/cards/invoices.html +++ b/pages/_includes/cards/invoices.html @@ -1,53 +1,84 @@
-
-

Invoices

-
-
- - +
+

Invoices

+
+
+ +
+ Show +
+ +
+ entries +
+ +
+ Serach: +
+ +
+
+ +
+
+
+ + + + + + + + + + + + + + + + + {% for invoice in site.data.invoices limit: 8 %} - - - - - - - - - + + + + + + + + + + + - - - - {% for invoice in site.data.invoices limit: 5 %} - - - - - - - - - - - - - {% endfor %} - -
No. {% include_cached ui/icon.html icon="chevron-up" class="icon-sm text-dark icon-thick" %}Invoice Subject {% include_cached ui/icon.html icon="code" class="icon-sm" %}Client {% include_cached ui/icon.html icon="code" class="icon-sm" %}VAT No. {% include_cached ui/icon.html icon="code" class="icon-sm" %}Created {% include_cached ui/icon.html icon="code" class="icon-sm" %}Status {% include_cached ui/icon.html icon="code" class="icon-sm" %}Price {% include_cached ui/icon.html icon="code" class="icon-sm" %}
No.Invoice SubjectClientVAT No.CreatedStatusPrice00{{ forloop.index | plus: 1400 }}{{ invoice.name }} + {% include ui/flag.html flag=invoice.country %} + {{ invoice.client }} + + {{ invoice.vat-no }} + + {{ invoice.date }} + + {{ invoice.status-name }} + {{ invoice.price }} + + + + {% include ui/dropdown-menu.html %} + + + {% include_cached ui/icon.html icon="edit" class="icon-sm float-right" %} +
00{{ forloop.index | plus: 1400 }}{{ invoice.name }} - {% include ui/flag.html flag=invoice.country %} - {{ invoice.client }} - - {{ invoice.vat-no }} - - {{ invoice.date }} - - {{ invoice.status-name }} - {{ invoice.price }} - - - {% include_cached ui/dropdown-menu.html %} - -
+ {% endfor %} + + +
+
+
+

Showing 1 to 8 of 16 entries

+
+ +
- diff --git a/pages/datatables.html b/pages/datatables.html new file mode 100644 index 000000000..ba30fd4ad --- /dev/null +++ b/pages/datatables.html @@ -0,0 +1,5 @@ +--- +title: Data Tables +--- + +{% include cards/invoices.html %} \ No newline at end of file