layout-combo.html 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta18
  5. * @link https://tabler.io
  6. * Copyright 2018-2023 The Tabler Authors
  7. * Copyright 2018-2023 codecalm.net Paweł Kuna
  8. * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
  9. -->
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8"/>
  13. <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
  14. <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
  15. <title>Dashboard - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
  16. <!-- CSS files -->
  17. <link href="./dist/css/tabler.min.css?1684072869" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css?1684072869" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css?1684072869" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css?1684072869" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css?1684072869" rel="stylesheet"/>
  22. <style>
  23. @import url('https://rsms.me/inter/inter.css');
  24. :root {
  25. --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  26. }
  27. body {
  28. font-feature-settings: "cv03", "cv04", "cv11";
  29. }
  30. </style>
  31. </head>
  32. <body >
  33. <script src="./dist/js/demo-theme.min.js?1684072869"></script>
  34. <div class="page">
  35. <!-- Sidebar -->
  36. <aside class="navbar navbar-vertical navbar-expand-lg" data-bs-theme="dark">
  37. <div class="container-fluid">
  38. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#sidebar-menu" aria-controls="sidebar-menu" aria-expanded="false" aria-label="Toggle navigation">
  39. <span class="navbar-toggler-icon"></span>
  40. </button>
  41. <h1 class="navbar-brand navbar-brand-autodark">
  42. <a href=".">
  43. <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
  44. </a>
  45. </h1>
  46. <div class="navbar-nav flex-row d-lg-none">
  47. <div class="nav-item d-none d-lg-flex me-3">
  48. <div class="btn-list">
  49. <a href="https://github.com/tabler/tabler" class="btn" target="_blank" rel="noreferrer">
  50. <!-- Download SVG icon from http://tabler-icons.io/i/brand-github -->
  51. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5" /></svg>
  52. Source code
  53. </a>
  54. <a href="https://github.com/sponsors/codecalm" class="btn" target="_blank" rel="noreferrer">
  55. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  56. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-pink" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  57. Sponsor
  58. </a>
  59. </div>
  60. </div>
  61. <div class="d-none d-lg-flex">
  62. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  63. data-bs-placement="bottom">
  64. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  65. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" /></svg>
  66. </a>
  67. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  68. data-bs-placement="bottom">
  69. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  70. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" /><path d="M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" /></svg>
  71. </a>
  72. <div class="nav-item dropdown d-none d-md-flex me-3">
  73. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  74. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  75. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6" /><path d="M9 17v1a3 3 0 0 0 6 0v-1" /></svg>
  76. <span class="badge bg-red"></span>
  77. </a>
  78. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  79. <div class="card">
  80. <div class="card-header">
  81. <h3 class="card-title">Last updates</h3>
  82. </div>
  83. <div class="list-group list-group-flush list-group-hoverable">
  84. <div class="list-group-item">
  85. <div class="row align-items-center">
  86. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  87. <div class="col text-truncate">
  88. <a href="#" class="text-body d-block">Example 1</a>
  89. <div class="d-block text-muted text-truncate mt-n1">
  90. Change deprecated html tags to text decoration classes (#29604)
  91. </div>
  92. </div>
  93. <div class="col-auto">
  94. <a href="#" class="list-group-item-actions">
  95. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  96. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  97. </a>
  98. </div>
  99. </div>
  100. </div>
  101. <div class="list-group-item">
  102. <div class="row align-items-center">
  103. <div class="col-auto"><span class="status-dot d-block"></span></div>
  104. <div class="col text-truncate">
  105. <a href="#" class="text-body d-block">Example 2</a>
  106. <div class="d-block text-muted text-truncate mt-n1">
  107. justify-content:between ⇒ justify-content:space-between (#29734)
  108. </div>
  109. </div>
  110. <div class="col-auto">
  111. <a href="#" class="list-group-item-actions show">
  112. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  113. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-yellow" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  114. </a>
  115. </div>
  116. </div>
  117. </div>
  118. <div class="list-group-item">
  119. <div class="row align-items-center">
  120. <div class="col-auto"><span class="status-dot d-block"></span></div>
  121. <div class="col text-truncate">
  122. <a href="#" class="text-body d-block">Example 3</a>
  123. <div class="d-block text-muted text-truncate mt-n1">
  124. Update change-version.js (#29736)
  125. </div>
  126. </div>
  127. <div class="col-auto">
  128. <a href="#" class="list-group-item-actions">
  129. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  130. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  131. </a>
  132. </div>
  133. </div>
  134. </div>
  135. <div class="list-group-item">
  136. <div class="row align-items-center">
  137. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  138. <div class="col text-truncate">
  139. <a href="#" class="text-body d-block">Example 4</a>
  140. <div class="d-block text-muted text-truncate mt-n1">
  141. Regenerate package-lock.json (#29730)
  142. </div>
  143. </div>
  144. <div class="col-auto">
  145. <a href="#" class="list-group-item-actions">
  146. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  147. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  148. </a>
  149. </div>
  150. </div>
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. </div>
  156. </div>
  157. <div class="nav-item dropdown">
  158. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  159. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  160. <div class="d-none d-xl-block ps-2">
  161. <div>Paweł Kuna</div>
  162. <div class="mt-1 small text-muted">UI Designer</div>
  163. </div>
  164. </a>
  165. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  166. <a href="#" class="dropdown-item">Status</a>
  167. <a href="./profile.html" class="dropdown-item">Profile</a>
  168. <a href="#" class="dropdown-item">Feedback</a>
  169. <div class="dropdown-divider"></div>
  170. <a href="./settings.html" class="dropdown-item">Settings</a>
  171. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  172. </div>
  173. </div>
  174. </div>
  175. <div class="collapse navbar-collapse" id="sidebar-menu">
  176. <ul class="navbar-nav pt-lg-3">
  177. <li class="nav-item">
  178. <a class="nav-link" href="./" >
  179. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/home -->
  180. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l-2 0l9 -9l9 9l-2 0" /><path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7" /><path d="M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6" /></svg>
  181. </span>
  182. <span class="nav-link-title">
  183. Home
  184. </span>
  185. </a>
  186. </li>
  187. <li class="nav-item dropdown">
  188. <a class="nav-link dropdown-toggle" href="#navbar-base" data-bs-toggle="dropdown" data-bs-auto-close="false" role="button" aria-expanded="false" >
  189. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/package -->
  190. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5" /><path d="M12 12l8 -4.5" /><path d="M12 12l0 9" /><path d="M12 12l-8 -4.5" /><path d="M16 5.25l-8 4.5" /></svg>
  191. </span>
  192. <span class="nav-link-title">
  193. Interface
  194. </span>
  195. </a>
  196. <div class="dropdown-menu">
  197. <div class="dropdown-menu-columns">
  198. <div class="dropdown-menu-column">
  199. <a class="dropdown-item" href="./accordion.html">
  200. Accordion
  201. </a>
  202. <a class="dropdown-item" href="./blank.html">
  203. Blank page
  204. </a>
  205. <a class="dropdown-item" href="./badges.html">
  206. Badges
  207. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  208. </a>
  209. <a class="dropdown-item" href="./buttons.html">
  210. Buttons
  211. </a>
  212. <div class="dropend">
  213. <a class="dropdown-item dropdown-toggle" href="#sidebar-cards" data-bs-toggle="dropdown" data-bs-auto-close="false" role="button" aria-expanded="false" >
  214. Cards
  215. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  216. </a>
  217. <div class="dropdown-menu">
  218. <a href="./cards.html" class="dropdown-item">
  219. Sample cards
  220. </a>
  221. <a href="./card-actions.html" class="dropdown-item">
  222. Card actions
  223. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  224. </a>
  225. <a href="./cards-masonry.html" class="dropdown-item">
  226. Cards Masonry
  227. </a>
  228. </div>
  229. </div>
  230. <a class="dropdown-item" href="./colors.html">
  231. Colors
  232. </a>
  233. <a class="dropdown-item" href="./datagrid.html">
  234. Data grid
  235. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  236. </a>
  237. <a class="dropdown-item" href="./datatables.html">
  238. Datatables
  239. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  240. </a>
  241. <a class="dropdown-item" href="./dropdowns.html">
  242. Dropdowns
  243. </a>
  244. <a class="dropdown-item" href="./modals.html">
  245. Modals
  246. </a>
  247. <a class="dropdown-item" href="./maps.html">
  248. Maps
  249. </a>
  250. <a class="dropdown-item" href="./map-fullsize.html">
  251. Map fullsize
  252. </a>
  253. <a class="dropdown-item" href="./maps-vector.html">
  254. Vector maps
  255. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  256. </a>
  257. <a class="dropdown-item" href="./navigation.html">
  258. Navigation
  259. </a>
  260. <a class="dropdown-item" href="./charts.html">
  261. Charts
  262. </a>
  263. <a class="dropdown-item" href="./pagination.html">
  264. <!-- Download SVG icon from http://tabler-icons.io/i/pie-chart -->
  265. Pagination
  266. </a>
  267. </div>
  268. <div class="dropdown-menu-column">
  269. <a class="dropdown-item" href="./placeholder.html">
  270. Placeholder
  271. </a>
  272. <a class="dropdown-item" href="./steps.html">
  273. Steps
  274. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  275. </a>
  276. <a class="dropdown-item" href="./tabs.html">
  277. Tabs
  278. </a>
  279. <a class="dropdown-item" href="./tables.html">
  280. Tables
  281. </a>
  282. <a class="dropdown-item" href="./carousel.html">
  283. Carousel
  284. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  285. </a>
  286. <a class="dropdown-item" href="./lists.html">
  287. Lists
  288. </a>
  289. <a class="dropdown-item" href="./typography.html">
  290. Typography
  291. </a>
  292. <a class="dropdown-item" href="./offcanvas.html">
  293. Offcanvas
  294. </a>
  295. <a class="dropdown-item" href="./markdown.html">
  296. Markdown
  297. </a>
  298. <a class="dropdown-item" href="./dropzone.html">
  299. Dropzone
  300. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  301. </a>
  302. <a class="dropdown-item" href="./lightbox.html">
  303. Lightbox
  304. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  305. </a>
  306. <a class="dropdown-item" href="./tinymce.html">
  307. TinyMCE
  308. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  309. </a>
  310. <a class="dropdown-item" href="./inline-player.html">
  311. Inline player
  312. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  313. </a>
  314. <div class="dropend">
  315. <a class="dropdown-item dropdown-toggle" href="#sidebar-authentication" data-bs-toggle="dropdown" data-bs-auto-close="false" role="button" aria-expanded="false" >
  316. Authentication
  317. </a>
  318. <div class="dropdown-menu">
  319. <a href="./sign-in.html" class="dropdown-item">
  320. Sign in
  321. </a>
  322. <a href="./sign-in-link.html" class="dropdown-item">
  323. Sign in link
  324. </a>
  325. <a href="./sign-in-illustration.html" class="dropdown-item">
  326. Sign in with illustration
  327. </a>
  328. <a href="./sign-in-cover.html" class="dropdown-item">
  329. Sign in with cover
  330. </a>
  331. <a href="./sign-up.html" class="dropdown-item">
  332. Sign up
  333. </a>
  334. <a href="./forgot-password.html" class="dropdown-item">
  335. Forgot password
  336. </a>
  337. <a href="./terms-of-service.html" class="dropdown-item">
  338. Terms of service
  339. </a>
  340. <a href="./auth-lock.html" class="dropdown-item">
  341. Lock screen
  342. </a>
  343. </div>
  344. </div>
  345. <div class="dropend">
  346. <a class="dropdown-item dropdown-toggle" href="#sidebar-error" data-bs-toggle="dropdown" data-bs-auto-close="false" role="button" aria-expanded="false" >
  347. <!-- Download SVG icon from http://tabler-icons.io/i/file-minus -->
  348. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline me-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" /><path d="M9 14l6 0" /></svg>
  349. Error pages
  350. </a>
  351. <div class="dropdown-menu">
  352. <a href="./error-404.html" class="dropdown-item">
  353. 404 page
  354. </a>
  355. <a href="./error-500.html" class="dropdown-item">
  356. 500 page
  357. </a>
  358. <a href="./error-maintenance.html" class="dropdown-item">
  359. Maintenance page
  360. </a>
  361. </div>
  362. </div>
  363. </div>
  364. </div>
  365. </div>
  366. </li>
  367. <li class="nav-item">
  368. <a class="nav-link" href="./form-elements.html" >
  369. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/checkbox -->
  370. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 11l3 3l8 -8" /><path d="M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9" /></svg>
  371. </span>
  372. <span class="nav-link-title">
  373. Forms
  374. </span>
  375. </a>
  376. </li>
  377. <li class="nav-item dropdown">
  378. <a class="nav-link dropdown-toggle" href="#navbar-extra" data-bs-toggle="dropdown" data-bs-auto-close="false" role="button" aria-expanded="false" >
  379. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  380. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  381. </span>
  382. <span class="nav-link-title">
  383. Extra
  384. </span>
  385. </a>
  386. <div class="dropdown-menu">
  387. <div class="dropdown-menu-columns">
  388. <div class="dropdown-menu-column">
  389. <a class="dropdown-item" href="./empty.html">
  390. Empty page
  391. </a>
  392. <a class="dropdown-item" href="./cookie-banner.html">
  393. Cookie banner
  394. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  395. </a>
  396. <a class="dropdown-item" href="./activity.html">
  397. Activity
  398. </a>
  399. <a class="dropdown-item" href="./gallery.html">
  400. Gallery
  401. </a>
  402. <a class="dropdown-item" href="./invoice.html">
  403. Invoice
  404. </a>
  405. <a class="dropdown-item" href="./search-results.html">
  406. Search results
  407. </a>
  408. <a class="dropdown-item" href="./pricing.html">
  409. Pricing cards
  410. </a>
  411. <a class="dropdown-item" href="./pricing-table.html">
  412. Pricing table
  413. </a>
  414. <a class="dropdown-item" href="./faq.html">
  415. FAQ
  416. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  417. </a>
  418. <a class="dropdown-item" href="./users.html">
  419. Users
  420. </a>
  421. <a class="dropdown-item" href="./license.html">
  422. License
  423. </a>
  424. </div>
  425. <div class="dropdown-menu-column">
  426. <a class="dropdown-item" href="./logs.html">
  427. Logs
  428. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  429. </a>
  430. <a class="dropdown-item" href="./music.html">
  431. Music
  432. </a>
  433. <a class="dropdown-item" href="./photogrid.html">
  434. Photogrid
  435. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  436. </a>
  437. <a class="dropdown-item" href="./tasks.html">
  438. Tasks
  439. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  440. </a>
  441. <a class="dropdown-item" href="./uptime.html">
  442. Uptime monitor
  443. </a>
  444. <a class="dropdown-item" href="./widgets.html">
  445. Widgets
  446. </a>
  447. <a class="dropdown-item" href="./wizard.html">
  448. Wizard
  449. </a>
  450. <a class="dropdown-item" href="./settings.html">
  451. Settings
  452. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  453. </a>
  454. <a class="dropdown-item" href="./trial-ended.html">
  455. Trial ended
  456. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  457. </a>
  458. <a class="dropdown-item" href="./job-listing.html">
  459. Job listing
  460. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  461. </a>
  462. <a class="dropdown-item" href="./page-loader.html">
  463. Page loader
  464. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  465. </a>
  466. </div>
  467. </div>
  468. </div>
  469. </li>
  470. <li class="nav-item active dropdown">
  471. <a class="nav-link dropdown-toggle" href="#navbar-layout" data-bs-toggle="dropdown" data-bs-auto-close="false" role="button" aria-expanded="true" >
  472. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/layout-2 -->
  473. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /><path d="M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /><path d="M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /><path d="M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /></svg>
  474. </span>
  475. <span class="nav-link-title">
  476. Layout
  477. </span>
  478. </a>
  479. <div class="dropdown-menu show">
  480. <div class="dropdown-menu-columns">
  481. <div class="dropdown-menu-column">
  482. <a class="dropdown-item" href="./layout-horizontal.html">
  483. Horizontal
  484. </a>
  485. <a class="dropdown-item" href="./layout-boxed.html">
  486. Boxed
  487. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  488. </a>
  489. <a class="dropdown-item" href="./layout-vertical.html">
  490. Vertical
  491. </a>
  492. <a class="dropdown-item" href="./layout-vertical-transparent.html">
  493. Vertical transparent
  494. </a>
  495. <a class="dropdown-item" href="./layout-vertical-right.html">
  496. Right vertical
  497. </a>
  498. <a class="dropdown-item" href="./layout-condensed.html">
  499. Condensed
  500. </a>
  501. <a class="dropdown-item active" href="./layout-combo.html">
  502. Combined
  503. </a>
  504. </div>
  505. <div class="dropdown-menu-column">
  506. <a class="dropdown-item" href="./layout-navbar-dark.html">
  507. Navbar dark
  508. </a>
  509. <a class="dropdown-item" href="./layout-navbar-sticky.html">
  510. Navbar sticky
  511. </a>
  512. <a class="dropdown-item" href="./layout-navbar-overlap.html">
  513. Navbar overlap
  514. </a>
  515. <a class="dropdown-item" href="./layout-rtl.html">
  516. RTL mode
  517. </a>
  518. <a class="dropdown-item" href="./layout-fluid.html">
  519. Fluid
  520. </a>
  521. <a class="dropdown-item" href="./layout-fluid-vertical.html">
  522. Fluid vertical
  523. </a>
  524. </div>
  525. </div>
  526. </div>
  527. </li>
  528. <li class="nav-item">
  529. <a class="nav-link" href="./icons.html" >
  530. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  531. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7" /><path d="M10 10l.01 0" /><path d="M14 10l.01 0" /><path d="M10 14a3.5 3.5 0 0 0 4 0" /></svg>
  532. </span>
  533. <span class="nav-link-title">
  534. 4158 icons
  535. </span>
  536. </a>
  537. </li>
  538. <li class="nav-item dropdown">
  539. <a class="nav-link dropdown-toggle" href="#navbar-help" data-bs-toggle="dropdown" data-bs-auto-close="false" role="button" aria-expanded="false" >
  540. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/lifebuoy -->
  541. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" /><path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" /><path d="M15 15l3.35 3.35" /><path d="M9 15l-3.35 3.35" /><path d="M5.65 5.65l3.35 3.35" /><path d="M18.35 5.65l-3.35 3.35" /></svg>
  542. </span>
  543. <span class="nav-link-title">
  544. Help
  545. </span>
  546. </a>
  547. <div class="dropdown-menu">
  548. <a class="dropdown-item" href="https://tabler.io/docs" target="_blank" rel="noopener">
  549. Documentation
  550. </a>
  551. <a class="dropdown-item" href="./changelog.html">
  552. Changelog
  553. </a>
  554. <a class="dropdown-item" href="https://github.com/tabler/tabler" target="_blank" rel="noopener">
  555. Source code
  556. </a>
  557. <a class="dropdown-item text-pink" href="https://github.com/sponsors/codecalm" target="_blank" rel="noopener">
  558. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  559. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline me-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  560. Sponsor project!
  561. </a>
  562. </div>
  563. </li>
  564. </ul>
  565. </div>
  566. </div>
  567. </aside>
  568. <!-- Navbar -->
  569. <header class="navbar navbar-expand-md d-none d-lg-flex d-print-none" >
  570. <div class="container-xl">
  571. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-menu" aria-controls="navbar-menu" aria-expanded="false" aria-label="Toggle navigation">
  572. <span class="navbar-toggler-icon"></span>
  573. </button>
  574. <div class="navbar-nav flex-row order-md-last">
  575. <div class="d-none d-md-flex">
  576. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  577. data-bs-placement="bottom">
  578. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  579. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" /></svg>
  580. </a>
  581. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  582. data-bs-placement="bottom">
  583. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  584. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" /><path d="M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" /></svg>
  585. </a>
  586. <div class="nav-item dropdown d-none d-md-flex me-3">
  587. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  588. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  589. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6" /><path d="M9 17v1a3 3 0 0 0 6 0v-1" /></svg>
  590. <span class="badge bg-red"></span>
  591. </a>
  592. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  593. <div class="card">
  594. <div class="card-header">
  595. <h3 class="card-title">Last updates</h3>
  596. </div>
  597. <div class="list-group list-group-flush list-group-hoverable">
  598. <div class="list-group-item">
  599. <div class="row align-items-center">
  600. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  601. <div class="col text-truncate">
  602. <a href="#" class="text-body d-block">Example 1</a>
  603. <div class="d-block text-muted text-truncate mt-n1">
  604. Change deprecated html tags to text decoration classes (#29604)
  605. </div>
  606. </div>
  607. <div class="col-auto">
  608. <a href="#" class="list-group-item-actions">
  609. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  610. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  611. </a>
  612. </div>
  613. </div>
  614. </div>
  615. <div class="list-group-item">
  616. <div class="row align-items-center">
  617. <div class="col-auto"><span class="status-dot d-block"></span></div>
  618. <div class="col text-truncate">
  619. <a href="#" class="text-body d-block">Example 2</a>
  620. <div class="d-block text-muted text-truncate mt-n1">
  621. justify-content:between ⇒ justify-content:space-between (#29734)
  622. </div>
  623. </div>
  624. <div class="col-auto">
  625. <a href="#" class="list-group-item-actions show">
  626. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  627. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-yellow" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  628. </a>
  629. </div>
  630. </div>
  631. </div>
  632. <div class="list-group-item">
  633. <div class="row align-items-center">
  634. <div class="col-auto"><span class="status-dot d-block"></span></div>
  635. <div class="col text-truncate">
  636. <a href="#" class="text-body d-block">Example 3</a>
  637. <div class="d-block text-muted text-truncate mt-n1">
  638. Update change-version.js (#29736)
  639. </div>
  640. </div>
  641. <div class="col-auto">
  642. <a href="#" class="list-group-item-actions">
  643. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  644. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  645. </a>
  646. </div>
  647. </div>
  648. </div>
  649. <div class="list-group-item">
  650. <div class="row align-items-center">
  651. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  652. <div class="col text-truncate">
  653. <a href="#" class="text-body d-block">Example 4</a>
  654. <div class="d-block text-muted text-truncate mt-n1">
  655. Regenerate package-lock.json (#29730)
  656. </div>
  657. </div>
  658. <div class="col-auto">
  659. <a href="#" class="list-group-item-actions">
  660. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  661. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  662. </a>
  663. </div>
  664. </div>
  665. </div>
  666. </div>
  667. </div>
  668. </div>
  669. </div>
  670. </div>
  671. <div class="nav-item dropdown">
  672. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  673. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  674. <div class="d-none d-xl-block ps-2">
  675. <div>Paweł Kuna</div>
  676. <div class="mt-1 small text-muted">UI Designer</div>
  677. </div>
  678. </a>
  679. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  680. <a href="#" class="dropdown-item">Status</a>
  681. <a href="./profile.html" class="dropdown-item">Profile</a>
  682. <a href="#" class="dropdown-item">Feedback</a>
  683. <div class="dropdown-divider"></div>
  684. <a href="./settings.html" class="dropdown-item">Settings</a>
  685. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  686. </div>
  687. </div>
  688. </div>
  689. <div class="collapse navbar-collapse" id="navbar-menu">
  690. <div>
  691. <form action="./" method="get" autocomplete="off" novalidate>
  692. <div class="input-icon">
  693. <span class="input-icon-addon">
  694. <!-- Download SVG icon from http://tabler-icons.io/i/search -->
  695. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" /><path d="M21 21l-6 -6" /></svg>
  696. </span>
  697. <input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
  698. </div>
  699. </form>
  700. </div>
  701. </div>
  702. </div>
  703. </header>
  704. <div class="page-wrapper">
  705. <!-- Page header -->
  706. <div class="page-header d-print-none">
  707. <div class="container-xl">
  708. <div class="row g-2 align-items-center">
  709. <div class="col">
  710. <!-- Page pre-title -->
  711. <div class="page-pretitle">
  712. Overview
  713. </div>
  714. <h2 class="page-title">
  715. Combo layout
  716. </h2>
  717. </div>
  718. <!-- Page title actions -->
  719. <div class="col-auto ms-auto d-print-none">
  720. <div class="btn-list">
  721. <span class="d-none d-sm-inline">
  722. <a href="#" class="btn">
  723. New view
  724. </a>
  725. </span>
  726. <a href="#" class="btn btn-primary d-none d-sm-inline-block" data-bs-toggle="modal" data-bs-target="#modal-report">
  727. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  728. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 5l0 14" /><path d="M5 12l14 0" /></svg>
  729. Create new report
  730. </a>
  731. <a href="#" class="btn btn-primary d-sm-none btn-icon" data-bs-toggle="modal" data-bs-target="#modal-report" aria-label="Create new report">
  732. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  733. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 5l0 14" /><path d="M5 12l14 0" /></svg>
  734. </a>
  735. </div>
  736. </div>
  737. </div>
  738. </div>
  739. </div>
  740. <!-- Page body -->
  741. <div class="page-body">
  742. <div class="container-xl">
  743. <div class="row row-deck row-cards">
  744. <div class="col-sm-6 col-lg-3">
  745. <div class="card">
  746. <div class="card-body">
  747. <div class="d-flex align-items-center">
  748. <div class="subheader">Sales</div>
  749. <div class="ms-auto lh-1">
  750. <div class="dropdown">
  751. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  752. <div class="dropdown-menu dropdown-menu-end">
  753. <a class="dropdown-item active" href="#">Last 7 days</a>
  754. <a class="dropdown-item" href="#">Last 30 days</a>
  755. <a class="dropdown-item" href="#">Last 3 months</a>
  756. </div>
  757. </div>
  758. </div>
  759. </div>
  760. <div class="h1 mb-3">75%</div>
  761. <div class="d-flex mb-2">
  762. <div>Conversion rate</div>
  763. <div class="ms-auto">
  764. <span class="text-green d-inline-flex align-items-center lh-1">
  765. 7% <!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  766. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  767. </span>
  768. </div>
  769. </div>
  770. <div class="progress progress-sm">
  771. <div class="progress-bar bg-primary" style="width: 75%" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" aria-label="75% Complete">
  772. <span class="visually-hidden">75% Complete</span>
  773. </div>
  774. </div>
  775. </div>
  776. </div>
  777. </div>
  778. <div class="col-sm-6 col-lg-3">
  779. <div class="card">
  780. <div class="card-body">
  781. <div class="d-flex align-items-center">
  782. <div class="subheader">Revenue</div>
  783. <div class="ms-auto lh-1">
  784. <div class="dropdown">
  785. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  786. <div class="dropdown-menu dropdown-menu-end">
  787. <a class="dropdown-item active" href="#">Last 7 days</a>
  788. <a class="dropdown-item" href="#">Last 30 days</a>
  789. <a class="dropdown-item" href="#">Last 3 months</a>
  790. </div>
  791. </div>
  792. </div>
  793. </div>
  794. <div class="d-flex align-items-baseline">
  795. <div class="h1 mb-0 me-2">$4,300</div>
  796. <div class="me-auto">
  797. <span class="text-green d-inline-flex align-items-center lh-1">
  798. 8% <!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  799. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  800. </span>
  801. </div>
  802. </div>
  803. </div>
  804. <div id="chart-revenue-bg" class="chart-sm"></div>
  805. </div>
  806. </div>
  807. <div class="col-sm-6 col-lg-3">
  808. <div class="card">
  809. <div class="card-body">
  810. <div class="d-flex align-items-center">
  811. <div class="subheader">New clients</div>
  812. <div class="ms-auto lh-1">
  813. <div class="dropdown">
  814. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  815. <div class="dropdown-menu dropdown-menu-end">
  816. <a class="dropdown-item active" href="#">Last 7 days</a>
  817. <a class="dropdown-item" href="#">Last 30 days</a>
  818. <a class="dropdown-item" href="#">Last 3 months</a>
  819. </div>
  820. </div>
  821. </div>
  822. </div>
  823. <div class="d-flex align-items-baseline">
  824. <div class="h1 mb-3 me-2">6,782</div>
  825. <div class="me-auto">
  826. <span class="text-yellow d-inline-flex align-items-center lh-1">
  827. 0% <!-- Download SVG icon from http://tabler-icons.io/i/minus -->
  828. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l14 0" /></svg>
  829. </span>
  830. </div>
  831. </div>
  832. <div id="chart-new-clients" class="chart-sm"></div>
  833. </div>
  834. </div>
  835. </div>
  836. <div class="col-sm-6 col-lg-3">
  837. <div class="card">
  838. <div class="card-body">
  839. <div class="d-flex align-items-center">
  840. <div class="subheader">Active users</div>
  841. <div class="ms-auto lh-1">
  842. <div class="dropdown">
  843. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  844. <div class="dropdown-menu dropdown-menu-end">
  845. <a class="dropdown-item active" href="#">Last 7 days</a>
  846. <a class="dropdown-item" href="#">Last 30 days</a>
  847. <a class="dropdown-item" href="#">Last 3 months</a>
  848. </div>
  849. </div>
  850. </div>
  851. </div>
  852. <div class="d-flex align-items-baseline">
  853. <div class="h1 mb-3 me-2">2,986</div>
  854. <div class="me-auto">
  855. <span class="text-green d-inline-flex align-items-center lh-1">
  856. 4% <!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  857. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  858. </span>
  859. </div>
  860. </div>
  861. <div id="chart-active-users" class="chart-sm"></div>
  862. </div>
  863. </div>
  864. </div>
  865. <div class="col-12">
  866. <div class="row row-cards">
  867. <div class="col-sm-6 col-lg-3">
  868. <div class="card card-sm">
  869. <div class="card-body">
  870. <div class="row align-items-center">
  871. <div class="col-auto">
  872. <span class="bg-primary text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/currency-dollar -->
  873. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2" /><path d="M12 3v3m0 12v3" /></svg>
  874. </span>
  875. </div>
  876. <div class="col">
  877. <div class="font-weight-medium">
  878. 132 Sales
  879. </div>
  880. <div class="text-muted">
  881. 12 waiting payments
  882. </div>
  883. </div>
  884. </div>
  885. </div>
  886. </div>
  887. </div>
  888. <div class="col-sm-6 col-lg-3">
  889. <div class="card card-sm">
  890. <div class="card-body">
  891. <div class="row align-items-center">
  892. <div class="col-auto">
  893. <span class="bg-green text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/shopping-cart -->
  894. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" /><path d="M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" /><path d="M17 17h-11v-14h-2" /><path d="M6 5l14 1l-1 7h-13" /></svg>
  895. </span>
  896. </div>
  897. <div class="col">
  898. <div class="font-weight-medium">
  899. 78 Orders
  900. </div>
  901. <div class="text-muted">
  902. 32 shipped
  903. </div>
  904. </div>
  905. </div>
  906. </div>
  907. </div>
  908. </div>
  909. <div class="col-sm-6 col-lg-3">
  910. <div class="card card-sm">
  911. <div class="card-body">
  912. <div class="row align-items-center">
  913. <div class="col-auto">
  914. <span class="bg-twitter text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/brand-twitter -->
  915. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z" /></svg>
  916. </span>
  917. </div>
  918. <div class="col">
  919. <div class="font-weight-medium">
  920. 623 Shares
  921. </div>
  922. <div class="text-muted">
  923. 16 today
  924. </div>
  925. </div>
  926. </div>
  927. </div>
  928. </div>
  929. </div>
  930. <div class="col-sm-6 col-lg-3">
  931. <div class="card card-sm">
  932. <div class="card-body">
  933. <div class="row align-items-center">
  934. <div class="col-auto">
  935. <span class="bg-facebook text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/brand-facebook -->
  936. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3" /></svg>
  937. </span>
  938. </div>
  939. <div class="col">
  940. <div class="font-weight-medium">
  941. 132 Likes
  942. </div>
  943. <div class="text-muted">
  944. 21 today
  945. </div>
  946. </div>
  947. </div>
  948. </div>
  949. </div>
  950. </div>
  951. </div>
  952. </div>
  953. <div class="col-lg-6">
  954. <div class="card">
  955. <div class="card-body">
  956. <h3 class="card-title">Traffic summary</h3>
  957. <div id="chart-mentions" class="chart-lg"></div>
  958. </div>
  959. </div>
  960. </div>
  961. <div class="col-lg-6">
  962. <div class="card">
  963. <div class="card-body">
  964. <h3 class="card-title">Locations</h3>
  965. <div class="ratio ratio-21x9">
  966. <div>
  967. <div id="map-world" class="w-100 h-100"></div>
  968. </div>
  969. </div>
  970. </div>
  971. </div>
  972. </div>
  973. <div class="col-lg-6">
  974. <div class="row row-cards">
  975. <div class="col-12">
  976. <div class="card">
  977. <div class="card-body">
  978. <p class="mb-3">Using Storage <strong>6854.45 MB </strong>of 8 GB</p>
  979. <div class="progress progress-separated mb-3">
  980. <div class="progress-bar bg-primary" role="progressbar" style="width: 44%" aria-label="Regular"></div>
  981. <div class="progress-bar bg-info" role="progressbar" style="width: 19%" aria-label="System"></div>
  982. <div class="progress-bar bg-success" role="progressbar" style="width: 9%" aria-label="Shared"></div>
  983. </div>
  984. <div class="row">
  985. <div class="col-auto d-flex align-items-center pe-2">
  986. <span class="legend me-2 bg-primary"></span>
  987. <span>Regular</span>
  988. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">915MB</span>
  989. </div>
  990. <div class="col-auto d-flex align-items-center px-2">
  991. <span class="legend me-2 bg-info"></span>
  992. <span>System</span>
  993. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">415MB</span>
  994. </div>
  995. <div class="col-auto d-flex align-items-center px-2">
  996. <span class="legend me-2 bg-success"></span>
  997. <span>Shared</span>
  998. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">201MB</span>
  999. </div>
  1000. <div class="col-auto d-flex align-items-center ps-2">
  1001. <span class="legend me-2"></span>
  1002. <span>Free</span>
  1003. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">612MB</span>
  1004. </div>
  1005. </div>
  1006. </div>
  1007. </div>
  1008. </div>
  1009. <div class="col-12">
  1010. <div class="card" style="height: 28rem">
  1011. <div class="card-body card-body-scrollable card-body-scrollable-shadow">
  1012. <div class="divide-y">
  1013. <div>
  1014. <div class="row">
  1015. <div class="col-auto">
  1016. <span class="avatar">JL</span>
  1017. </div>
  1018. <div class="col">
  1019. <div class="text-truncate">
  1020. <strong>Jeffie Lewzey</strong> commented on your <strong>"I'm not a witch."</strong> post.
  1021. </div>
  1022. <div class="text-muted">yesterday</div>
  1023. </div>
  1024. <div class="col-auto align-self-center">
  1025. <div class="badge bg-primary"></div>
  1026. </div>
  1027. </div>
  1028. </div>
  1029. <div>
  1030. <div class="row">
  1031. <div class="col-auto">
  1032. <span class="avatar" style="background-image: url(./static/avatars/002m.jpg)"></span>
  1033. </div>
  1034. <div class="col">
  1035. <div class="text-truncate">
  1036. It's <strong>Mallory Hulme</strong>'s birthday. Wish him well!
  1037. </div>
  1038. <div class="text-muted">2 days ago</div>
  1039. </div>
  1040. <div class="col-auto align-self-center">
  1041. <div class="badge bg-primary"></div>
  1042. </div>
  1043. </div>
  1044. </div>
  1045. <div>
  1046. <div class="row">
  1047. <div class="col-auto">
  1048. <span class="avatar" style="background-image: url(./static/avatars/003m.jpg)"></span>
  1049. </div>
  1050. <div class="col">
  1051. <div class="text-truncate">
  1052. <strong>Dunn Slane</strong> posted <strong>"Well, what do you want?"</strong>.
  1053. </div>
  1054. <div class="text-muted">today</div>
  1055. </div>
  1056. <div class="col-auto align-self-center">
  1057. <div class="badge bg-primary"></div>
  1058. </div>
  1059. </div>
  1060. </div>
  1061. <div>
  1062. <div class="row">
  1063. <div class="col-auto">
  1064. <span class="avatar" style="background-image: url(./static/avatars/000f.jpg)"></span>
  1065. </div>
  1066. <div class="col">
  1067. <div class="text-truncate">
  1068. <strong>Emmy Levet</strong> created a new project <strong>Morning alarm clock</strong>.
  1069. </div>
  1070. <div class="text-muted">4 days ago</div>
  1071. </div>
  1072. <div class="col-auto align-self-center">
  1073. <div class="badge bg-primary"></div>
  1074. </div>
  1075. </div>
  1076. </div>
  1077. <div>
  1078. <div class="row">
  1079. <div class="col-auto">
  1080. <span class="avatar" style="background-image: url(./static/avatars/001f.jpg)"></span>
  1081. </div>
  1082. <div class="col">
  1083. <div class="text-truncate">
  1084. <strong>Maryjo Lebarree</strong> liked your photo.
  1085. </div>
  1086. <div class="text-muted">2 days ago</div>
  1087. </div>
  1088. </div>
  1089. </div>
  1090. <div>
  1091. <div class="row">
  1092. <div class="col-auto">
  1093. <span class="avatar">EP</span>
  1094. </div>
  1095. <div class="col">
  1096. <div class="text-truncate">
  1097. <strong>Egan Poetz</strong> registered new client as <strong>Trilia</strong>.
  1098. </div>
  1099. <div class="text-muted">yesterday</div>
  1100. </div>
  1101. </div>
  1102. </div>
  1103. <div>
  1104. <div class="row">
  1105. <div class="col-auto">
  1106. <span class="avatar" style="background-image: url(./static/avatars/002f.jpg)"></span>
  1107. </div>
  1108. <div class="col">
  1109. <div class="text-truncate">
  1110. <strong>Kellie Skingley</strong> closed a new deal on project <strong>Pen Pineapple Apple Pen</strong>.
  1111. </div>
  1112. <div class="text-muted">2 days ago</div>
  1113. </div>
  1114. </div>
  1115. </div>
  1116. <div>
  1117. <div class="row">
  1118. <div class="col-auto">
  1119. <span class="avatar" style="background-image: url(./static/avatars/003f.jpg)"></span>
  1120. </div>
  1121. <div class="col">
  1122. <div class="text-truncate">
  1123. <strong>Christabel Charlwood</strong> created a new project for <strong>Wikibox</strong>.
  1124. </div>
  1125. <div class="text-muted">4 days ago</div>
  1126. </div>
  1127. </div>
  1128. </div>
  1129. <div>
  1130. <div class="row">
  1131. <div class="col-auto">
  1132. <span class="avatar">HS</span>
  1133. </div>
  1134. <div class="col">
  1135. <div class="text-truncate">
  1136. <strong>Haskel Shelper</strong> change status of <strong>Tabler Icons</strong> from <strong>open</strong> to <strong>closed</strong>.
  1137. </div>
  1138. <div class="text-muted">today</div>
  1139. </div>
  1140. </div>
  1141. </div>
  1142. <div>
  1143. <div class="row">
  1144. <div class="col-auto">
  1145. <span class="avatar" style="background-image: url(./static/avatars/006m.jpg)"></span>
  1146. </div>
  1147. <div class="col">
  1148. <div class="text-truncate">
  1149. <strong>Lorry Mion</strong> liked <strong>Tabler UI Kit</strong>.
  1150. </div>
  1151. <div class="text-muted">yesterday</div>
  1152. </div>
  1153. </div>
  1154. </div>
  1155. <div>
  1156. <div class="row">
  1157. <div class="col-auto">
  1158. <span class="avatar" style="background-image: url(./static/avatars/004f.jpg)"></span>
  1159. </div>
  1160. <div class="col">
  1161. <div class="text-truncate">
  1162. <strong>Leesa Beaty</strong> posted new video.
  1163. </div>
  1164. <div class="text-muted">2 days ago</div>
  1165. </div>
  1166. </div>
  1167. </div>
  1168. <div>
  1169. <div class="row">
  1170. <div class="col-auto">
  1171. <span class="avatar" style="background-image: url(./static/avatars/007m.jpg)"></span>
  1172. </div>
  1173. <div class="col">
  1174. <div class="text-truncate">
  1175. <strong>Perren Keemar</strong> and 3 others followed you.
  1176. </div>
  1177. <div class="text-muted">2 days ago</div>
  1178. </div>
  1179. </div>
  1180. </div>
  1181. <div>
  1182. <div class="row">
  1183. <div class="col-auto">
  1184. <span class="avatar">SA</span>
  1185. </div>
  1186. <div class="col">
  1187. <div class="text-truncate">
  1188. <strong>Sunny Airey</strong> upload 3 new photos to category <strong>Inspirations</strong>.
  1189. </div>
  1190. <div class="text-muted">2 days ago</div>
  1191. </div>
  1192. </div>
  1193. </div>
  1194. <div>
  1195. <div class="row">
  1196. <div class="col-auto">
  1197. <span class="avatar" style="background-image: url(./static/avatars/009m.jpg)"></span>
  1198. </div>
  1199. <div class="col">
  1200. <div class="text-truncate">
  1201. <strong>Geoffry Flaunders</strong> made a <strong>$10</strong> donation.
  1202. </div>
  1203. <div class="text-muted">2 days ago</div>
  1204. </div>
  1205. </div>
  1206. </div>
  1207. <div>
  1208. <div class="row">
  1209. <div class="col-auto">
  1210. <span class="avatar" style="background-image: url(./static/avatars/010m.jpg)"></span>
  1211. </div>
  1212. <div class="col">
  1213. <div class="text-truncate">
  1214. <strong>Thatcher Keel</strong> created a profile.
  1215. </div>
  1216. <div class="text-muted">3 days ago</div>
  1217. </div>
  1218. </div>
  1219. </div>
  1220. <div>
  1221. <div class="row">
  1222. <div class="col-auto">
  1223. <span class="avatar" style="background-image: url(./static/avatars/005f.jpg)"></span>
  1224. </div>
  1225. <div class="col">
  1226. <div class="text-truncate">
  1227. <strong>Dyann Escala</strong> hosted the event <strong>Tabler UI Birthday</strong>.
  1228. </div>
  1229. <div class="text-muted">4 days ago</div>
  1230. </div>
  1231. </div>
  1232. </div>
  1233. <div>
  1234. <div class="row">
  1235. <div class="col-auto">
  1236. <span class="avatar" style="background-image: url(./static/avatars/006f.jpg)"></span>
  1237. </div>
  1238. <div class="col">
  1239. <div class="text-truncate">
  1240. <strong>Avivah Mugleston</strong> mentioned you on <strong>Best of 2020</strong>.
  1241. </div>
  1242. <div class="text-muted">2 days ago</div>
  1243. </div>
  1244. </div>
  1245. </div>
  1246. <div>
  1247. <div class="row">
  1248. <div class="col-auto">
  1249. <span class="avatar">AA</span>
  1250. </div>
  1251. <div class="col">
  1252. <div class="text-truncate">
  1253. <strong>Arlie Armstead</strong> sent a Review Request to <strong>Amanda Blake</strong>.
  1254. </div>
  1255. <div class="text-muted">2 days ago</div>
  1256. </div>
  1257. </div>
  1258. </div>
  1259. </div>
  1260. </div>
  1261. </div>
  1262. </div>
  1263. </div>
  1264. </div>
  1265. <div class="col-lg-6">
  1266. <div class="card">
  1267. <div class="card-header border-0">
  1268. <div class="card-title">Development activity</div>
  1269. </div>
  1270. <div class="position-relative">
  1271. <div class="position-absolute top-0 left-0 px-3 mt-1 w-75">
  1272. <div class="row g-2">
  1273. <div class="col-auto">
  1274. <div class="chart-sparkline chart-sparkline-square" id="sparkline-activity"></div>
  1275. </div>
  1276. <div class="col">
  1277. <div>Today's Earning: $4,262.40</div>
  1278. <div class="text-muted"><!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  1279. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline text-green" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  1280. +5% more than yesterday</div>
  1281. </div>
  1282. </div>
  1283. </div>
  1284. <div id="chart-development-activity"></div>
  1285. </div>
  1286. <div class="card-table table-responsive">
  1287. <table class="table table-vcenter">
  1288. <thead>
  1289. <tr>
  1290. <th>User</th>
  1291. <th>Commit</th>
  1292. <th>Date</th>
  1293. </tr>
  1294. </thead>
  1295. <tbody>
  1296. <tr>
  1297. <td class="w-1">
  1298. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  1299. </td>
  1300. <td class="td-truncate">
  1301. <div class="text-truncate">
  1302. Fix dart Sass compatibility (#29755)
  1303. </div>
  1304. </td>
  1305. <td class="text-nowrap text-muted">28 Nov 2019</td>
  1306. </tr>
  1307. <tr>
  1308. <td class="w-1">
  1309. <span class="avatar avatar-sm">JL</span>
  1310. </td>
  1311. <td class="td-truncate">
  1312. <div class="text-truncate">
  1313. Change deprecated html tags to text decoration classes (#29604)
  1314. </div>
  1315. </td>
  1316. <td class="text-nowrap text-muted">27 Nov 2019</td>
  1317. </tr>
  1318. <tr>
  1319. <td class="w-1">
  1320. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/002m.jpg)"></span>
  1321. </td>
  1322. <td class="td-truncate">
  1323. <div class="text-truncate">
  1324. justify-content:between ⇒ justify-content:space-between (#29734)
  1325. </div>
  1326. </td>
  1327. <td class="text-nowrap text-muted">26 Nov 2019</td>
  1328. </tr>
  1329. <tr>
  1330. <td class="w-1">
  1331. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/003m.jpg)"></span>
  1332. </td>
  1333. <td class="td-truncate">
  1334. <div class="text-truncate">
  1335. Update change-version.js (#29736)
  1336. </div>
  1337. </td>
  1338. <td class="text-nowrap text-muted">26 Nov 2019</td>
  1339. </tr>
  1340. <tr>
  1341. <td class="w-1">
  1342. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000f.jpg)"></span>
  1343. </td>
  1344. <td class="td-truncate">
  1345. <div class="text-truncate">
  1346. Regenerate package-lock.json (#29730)
  1347. </div>
  1348. </td>
  1349. <td class="text-nowrap text-muted">25 Nov 2019</td>
  1350. </tr>
  1351. </tbody>
  1352. </table>
  1353. </div>
  1354. </div>
  1355. </div>
  1356. <div class="col-12">
  1357. <div class="card card-md">
  1358. <div class="card-stamp card-stamp-lg">
  1359. <div class="card-stamp-icon bg-primary">
  1360. <!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  1361. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7" /><path d="M10 10l.01 0" /><path d="M14 10l.01 0" /><path d="M10 14a3.5 3.5 0 0 0 4 0" /></svg>
  1362. </div>
  1363. </div>
  1364. <div class="card-body">
  1365. <div class="row align-items-center">
  1366. <div class="col-10">
  1367. <h3 class="h1">Tabler Icons</h3>
  1368. <div class="markdown text-muted">
  1369. All icons come from the Tabler Icons set and are MIT-licensed. Visit
  1370. <a href="https://tabler-icons.io" target="_blank" rel="noopener">tabler-icons.io</a>,
  1371. download any of the 4158 icons in SVG, PNG or&nbsp;React and use them in your favourite design tools.
  1372. </div>
  1373. <div class="mt-3">
  1374. <a href="https://tabler-icons.io" class="btn btn-primary" target="_blank" rel="noopener">Download icons</a>
  1375. </div>
  1376. </div>
  1377. </div>
  1378. </div>
  1379. </div>
  1380. </div>
  1381. <div class="col-md-12 col-lg-8">
  1382. <div class="card">
  1383. <div class="card-header">
  1384. <h3 class="card-title">Most Visited Pages</h3>
  1385. </div>
  1386. <div class="card-table table-responsive">
  1387. <table class="table table-vcenter">
  1388. <thead>
  1389. <tr>
  1390. <th>Page name</th>
  1391. <th>Visitors</th>
  1392. <th>Unique</th>
  1393. <th colspan="2">Bounce rate</th>
  1394. </tr>
  1395. </thead>
  1396. <tr>
  1397. <td>
  1398. /
  1399. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1400. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1401. </a>
  1402. </td>
  1403. <td class="text-muted">4,896</td>
  1404. <td class="text-muted">3,654</td>
  1405. <td class="text-muted">82.54%</td>
  1406. <td class="text-end w-1">
  1407. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-1"></div>
  1408. </td>
  1409. </tr>
  1410. <tr>
  1411. <td>
  1412. /form-elements.html
  1413. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1414. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1415. </a>
  1416. </td>
  1417. <td class="text-muted">3,652</td>
  1418. <td class="text-muted">3,215</td>
  1419. <td class="text-muted">76.29%</td>
  1420. <td class="text-end w-1">
  1421. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-2"></div>
  1422. </td>
  1423. </tr>
  1424. <tr>
  1425. <td>
  1426. /index.html
  1427. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1428. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1429. </a>
  1430. </td>
  1431. <td class="text-muted">3,256</td>
  1432. <td class="text-muted">2,865</td>
  1433. <td class="text-muted">72.65%</td>
  1434. <td class="text-end w-1">
  1435. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-3"></div>
  1436. </td>
  1437. </tr>
  1438. <tr>
  1439. <td>
  1440. /icons.html
  1441. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1442. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1443. </a>
  1444. </td>
  1445. <td class="text-muted">986</td>
  1446. <td class="text-muted">865</td>
  1447. <td class="text-muted">44.89%</td>
  1448. <td class="text-end w-1">
  1449. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-4"></div>
  1450. </td>
  1451. </tr>
  1452. <tr>
  1453. <td>
  1454. /docs/
  1455. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1456. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1457. </a>
  1458. </td>
  1459. <td class="text-muted">912</td>
  1460. <td class="text-muted">822</td>
  1461. <td class="text-muted">41.12%</td>
  1462. <td class="text-end w-1">
  1463. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-5"></div>
  1464. </td>
  1465. </tr>
  1466. <tr>
  1467. <td>
  1468. /accordion.html
  1469. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1470. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1471. </a>
  1472. </td>
  1473. <td class="text-muted">855</td>
  1474. <td class="text-muted">798</td>
  1475. <td class="text-muted">32.65%</td>
  1476. <td class="text-end w-1">
  1477. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-6"></div>
  1478. </td>
  1479. </tr>
  1480. </table>
  1481. </div>
  1482. </div>
  1483. </div>
  1484. <div class="col-md-6 col-lg-4">
  1485. <a href="https://github.com/sponsors/codecalm" class="card card-sponsor" target="_blank" rel="noopener" style="background-image: url(./static/sponsor-banner-homepage.svg)" aria-label="Sponsor Tabler!">
  1486. <div class="card-body"></div>
  1487. </a>
  1488. </div>
  1489. <div class="col-md-6 col-lg-4">
  1490. <div class="card">
  1491. <div class="card-header">
  1492. <h3 class="card-title">Social Media Traffic</h3>
  1493. </div>
  1494. <table class="table card-table table-vcenter">
  1495. <thead>
  1496. <tr>
  1497. <th>Network</th>
  1498. <th colspan="2">Visitors</th>
  1499. </tr>
  1500. </thead>
  1501. <tbody>
  1502. <tr>
  1503. <td>Instagram</td>
  1504. <td>3,550</td>
  1505. <td class="w-50">
  1506. <div class="progress progress-xs">
  1507. <div class="progress-bar bg-primary" style="width: 71.0%"></div>
  1508. </div>
  1509. </td>
  1510. </tr>
  1511. <tr>
  1512. <td>Twitter</td>
  1513. <td>1,798</td>
  1514. <td class="w-50">
  1515. <div class="progress progress-xs">
  1516. <div class="progress-bar bg-primary" style="width: 35.96%"></div>
  1517. </div>
  1518. </td>
  1519. </tr>
  1520. <tr>
  1521. <td>Facebook</td>
  1522. <td>1,245</td>
  1523. <td class="w-50">
  1524. <div class="progress progress-xs">
  1525. <div class="progress-bar bg-primary" style="width: 24.9%"></div>
  1526. </div>
  1527. </td>
  1528. </tr>
  1529. <tr>
  1530. <td>TikTok</td>
  1531. <td>986</td>
  1532. <td class="w-50">
  1533. <div class="progress progress-xs">
  1534. <div class="progress-bar bg-primary" style="width: 19.72%"></div>
  1535. </div>
  1536. </td>
  1537. </tr>
  1538. <tr>
  1539. <td>Pinterest</td>
  1540. <td>854</td>
  1541. <td class="w-50">
  1542. <div class="progress progress-xs">
  1543. <div class="progress-bar bg-primary" style="width: 17.08%"></div>
  1544. </div>
  1545. </td>
  1546. </tr>
  1547. <tr>
  1548. <td>VK</td>
  1549. <td>650</td>
  1550. <td class="w-50">
  1551. <div class="progress progress-xs">
  1552. <div class="progress-bar bg-primary" style="width: 13.0%"></div>
  1553. </div>
  1554. </td>
  1555. </tr>
  1556. <tr>
  1557. <td>Pinterest</td>
  1558. <td>420</td>
  1559. <td class="w-50">
  1560. <div class="progress progress-xs">
  1561. <div class="progress-bar bg-primary" style="width: 8.4%"></div>
  1562. </div>
  1563. </td>
  1564. </tr>
  1565. </tbody>
  1566. </table>
  1567. </div>
  1568. </div>
  1569. <div class="col-md-12 col-lg-8">
  1570. <div class="card">
  1571. <div class="card-header">
  1572. <h3 class="card-title">Tasks</h3>
  1573. </div>
  1574. <div class="table-responsive">
  1575. <table class="table card-table table-vcenter">
  1576. <tr>
  1577. <td class="w-1 pe-0">
  1578. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" checked >
  1579. </td>
  1580. <td class="w-100">
  1581. <a href="#" class="text-reset">Extend the data model.</a>
  1582. </td>
  1583. <td class="text-nowrap text-muted">
  1584. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1585. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1586. August 04, 2021
  1587. </td>
  1588. <td class="text-nowrap">
  1589. <a href="#" class="text-muted">
  1590. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1591. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1592. 2/7
  1593. </a>
  1594. </td>
  1595. <td class="text-nowrap">
  1596. <a href="#" class="text-muted">
  1597. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1598. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1599. 3</a>
  1600. </td>
  1601. <td>
  1602. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  1603. </td>
  1604. </tr>
  1605. <tr>
  1606. <td class="w-1 pe-0">
  1607. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" >
  1608. </td>
  1609. <td class="w-100">
  1610. <a href="#" class="text-reset">Verify the event flow.</a>
  1611. </td>
  1612. <td class="text-nowrap text-muted">
  1613. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1614. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1615. January 03, 2019
  1616. </td>
  1617. <td class="text-nowrap">
  1618. <a href="#" class="text-muted">
  1619. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1620. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1621. 3/10
  1622. </a>
  1623. </td>
  1624. <td class="text-nowrap">
  1625. <a href="#" class="text-muted">
  1626. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1627. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1628. 6</a>
  1629. </td>
  1630. <td>
  1631. <span class="avatar avatar-sm">JL</span>
  1632. </td>
  1633. </tr>
  1634. <tr>
  1635. <td class="w-1 pe-0">
  1636. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" >
  1637. </td>
  1638. <td class="w-100">
  1639. <a href="#" class="text-reset">Database backup and maintenance</a>
  1640. </td>
  1641. <td class="text-nowrap text-muted">
  1642. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1643. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1644. December 28, 2018
  1645. </td>
  1646. <td class="text-nowrap">
  1647. <a href="#" class="text-muted">
  1648. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1649. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1650. 0/6
  1651. </a>
  1652. </td>
  1653. <td class="text-nowrap">
  1654. <a href="#" class="text-muted">
  1655. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1656. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1657. 1</a>
  1658. </td>
  1659. <td>
  1660. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/002m.jpg)"></span>
  1661. </td>
  1662. </tr>
  1663. <tr>
  1664. <td class="w-1 pe-0">
  1665. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" checked >
  1666. </td>
  1667. <td class="w-100">
  1668. <a href="#" class="text-reset">Identify the implementation team.</a>
  1669. </td>
  1670. <td class="text-nowrap text-muted">
  1671. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1672. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1673. November 07, 2020
  1674. </td>
  1675. <td class="text-nowrap">
  1676. <a href="#" class="text-muted">
  1677. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1678. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1679. 6/10
  1680. </a>
  1681. </td>
  1682. <td class="text-nowrap">
  1683. <a href="#" class="text-muted">
  1684. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1685. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1686. 12</a>
  1687. </td>
  1688. <td>
  1689. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/003m.jpg)"></span>
  1690. </td>
  1691. </tr>
  1692. <tr>
  1693. <td class="w-1 pe-0">
  1694. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" >
  1695. </td>
  1696. <td class="w-100">
  1697. <a href="#" class="text-reset">Define users and workflow</a>
  1698. </td>
  1699. <td class="text-nowrap text-muted">
  1700. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1701. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1702. November 23, 2021
  1703. </td>
  1704. <td class="text-nowrap">
  1705. <a href="#" class="text-muted">
  1706. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1707. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1708. 3/7
  1709. </a>
  1710. </td>
  1711. <td class="text-nowrap">
  1712. <a href="#" class="text-muted">
  1713. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1714. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1715. 5</a>
  1716. </td>
  1717. <td>
  1718. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000f.jpg)"></span>
  1719. </td>
  1720. </tr>
  1721. <tr>
  1722. <td class="w-1 pe-0">
  1723. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" checked >
  1724. </td>
  1725. <td class="w-100">
  1726. <a href="#" class="text-reset">Check Pull Requests</a>
  1727. </td>
  1728. <td class="text-nowrap text-muted">
  1729. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1730. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1731. January 14, 2021
  1732. </td>
  1733. <td class="text-nowrap">
  1734. <a href="#" class="text-muted">
  1735. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1736. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1737. 2/9
  1738. </a>
  1739. </td>
  1740. <td class="text-nowrap">
  1741. <a href="#" class="text-muted">
  1742. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1743. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1744. 3</a>
  1745. </td>
  1746. <td>
  1747. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/001f.jpg)"></span>
  1748. </td>
  1749. </tr>
  1750. </table>
  1751. </div>
  1752. </div>
  1753. </div>
  1754. <div class="col-12">
  1755. <div class="card">
  1756. <div class="card-header">
  1757. <h3 class="card-title">Invoices</h3>
  1758. </div>
  1759. <div class="card-body border-bottom py-3">
  1760. <div class="d-flex">
  1761. <div class="text-muted">
  1762. Show
  1763. <div class="mx-2 d-inline-block">
  1764. <input type="text" class="form-control form-control-sm" value="8" size="3" aria-label="Invoices count">
  1765. </div>
  1766. entries
  1767. </div>
  1768. <div class="ms-auto text-muted">
  1769. Search:
  1770. <div class="ms-2 d-inline-block">
  1771. <input type="text" class="form-control form-control-sm" aria-label="Search invoice">
  1772. </div>
  1773. </div>
  1774. </div>
  1775. </div>
  1776. <div class="table-responsive">
  1777. <table class="table card-table table-vcenter text-nowrap datatable">
  1778. <thead>
  1779. <tr>
  1780. <th class="w-1"><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select all invoices"></th>
  1781. <th class="w-1">No. <!-- Download SVG icon from http://tabler-icons.io/i/chevron-up -->
  1782. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-sm icon-thick" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 15l6 -6l6 6" /></svg>
  1783. </th>
  1784. <th>Invoice Subject</th>
  1785. <th>Client</th>
  1786. <th>VAT No.</th>
  1787. <th>Created</th>
  1788. <th>Status</th>
  1789. <th>Price</th>
  1790. <th></th>
  1791. </tr>
  1792. </thead>
  1793. <tbody>
  1794. <tr>
  1795. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1796. <td><span class="text-muted">001401</span></td>
  1797. <td><a href="invoice.html" class="text-reset" tabindex="-1">Design Works</a></td>
  1798. <td>
  1799. <span class="flag flag-country-us"></span>
  1800. Carlson Limited
  1801. </td>
  1802. <td>
  1803. 87956621
  1804. </td>
  1805. <td>
  1806. 15 Dec 2017
  1807. </td>
  1808. <td>
  1809. <span class="badge bg-success me-1"></span> Paid
  1810. </td>
  1811. <td>$887</td>
  1812. <td class="text-end">
  1813. <span class="dropdown">
  1814. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1815. <div class="dropdown-menu dropdown-menu-end">
  1816. <a class="dropdown-item" href="#">
  1817. Action
  1818. </a>
  1819. <a class="dropdown-item" href="#">
  1820. Another action
  1821. </a>
  1822. </div>
  1823. </span>
  1824. </td>
  1825. </tr>
  1826. <tr>
  1827. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1828. <td><span class="text-muted">001402</span></td>
  1829. <td><a href="invoice.html" class="text-reset" tabindex="-1">UX Wireframes</a></td>
  1830. <td>
  1831. <span class="flag flag-country-gb"></span>
  1832. Adobe
  1833. </td>
  1834. <td>
  1835. 87956421
  1836. </td>
  1837. <td>
  1838. 12 Apr 2017
  1839. </td>
  1840. <td>
  1841. <span class="badge bg-warning me-1"></span> Pending
  1842. </td>
  1843. <td>$1200</td>
  1844. <td class="text-end">
  1845. <span class="dropdown">
  1846. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1847. <div class="dropdown-menu dropdown-menu-end">
  1848. <a class="dropdown-item" href="#">
  1849. Action
  1850. </a>
  1851. <a class="dropdown-item" href="#">
  1852. Another action
  1853. </a>
  1854. </div>
  1855. </span>
  1856. </td>
  1857. </tr>
  1858. <tr>
  1859. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1860. <td><span class="text-muted">001403</span></td>
  1861. <td><a href="invoice.html" class="text-reset" tabindex="-1">New Dashboard</a></td>
  1862. <td>
  1863. <span class="flag flag-country-de"></span>
  1864. Bluewolf
  1865. </td>
  1866. <td>
  1867. 87952621
  1868. </td>
  1869. <td>
  1870. 23 Oct 2017
  1871. </td>
  1872. <td>
  1873. <span class="badge bg-warning me-1"></span> Pending
  1874. </td>
  1875. <td>$534</td>
  1876. <td class="text-end">
  1877. <span class="dropdown">
  1878. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1879. <div class="dropdown-menu dropdown-menu-end">
  1880. <a class="dropdown-item" href="#">
  1881. Action
  1882. </a>
  1883. <a class="dropdown-item" href="#">
  1884. Another action
  1885. </a>
  1886. </div>
  1887. </span>
  1888. </td>
  1889. </tr>
  1890. <tr>
  1891. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1892. <td><span class="text-muted">001404</span></td>
  1893. <td><a href="invoice.html" class="text-reset" tabindex="-1">Landing Page</a></td>
  1894. <td>
  1895. <span class="flag flag-country-br"></span>
  1896. Salesforce
  1897. </td>
  1898. <td>
  1899. 87953421
  1900. </td>
  1901. <td>
  1902. 2 Sep 2017
  1903. </td>
  1904. <td>
  1905. <span class="badge bg-secondary me-1"></span> Due in 2 Weeks
  1906. </td>
  1907. <td>$1500</td>
  1908. <td class="text-end">
  1909. <span class="dropdown">
  1910. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1911. <div class="dropdown-menu dropdown-menu-end">
  1912. <a class="dropdown-item" href="#">
  1913. Action
  1914. </a>
  1915. <a class="dropdown-item" href="#">
  1916. Another action
  1917. </a>
  1918. </div>
  1919. </span>
  1920. </td>
  1921. </tr>
  1922. <tr>
  1923. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1924. <td><span class="text-muted">001405</span></td>
  1925. <td><a href="invoice.html" class="text-reset" tabindex="-1">Marketing Templates</a></td>
  1926. <td>
  1927. <span class="flag flag-country-pl"></span>
  1928. Printic
  1929. </td>
  1930. <td>
  1931. 87956621
  1932. </td>
  1933. <td>
  1934. 29 Jan 2018
  1935. </td>
  1936. <td>
  1937. <span class="badge bg-danger me-1"></span> Paid Today
  1938. </td>
  1939. <td>$648</td>
  1940. <td class="text-end">
  1941. <span class="dropdown">
  1942. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1943. <div class="dropdown-menu dropdown-menu-end">
  1944. <a class="dropdown-item" href="#">
  1945. Action
  1946. </a>
  1947. <a class="dropdown-item" href="#">
  1948. Another action
  1949. </a>
  1950. </div>
  1951. </span>
  1952. </td>
  1953. </tr>
  1954. <tr>
  1955. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1956. <td><span class="text-muted">001406</span></td>
  1957. <td><a href="invoice.html" class="text-reset" tabindex="-1">Sales Presentation</a></td>
  1958. <td>
  1959. <span class="flag flag-country-br"></span>
  1960. Tabdaq
  1961. </td>
  1962. <td>
  1963. 87956621
  1964. </td>
  1965. <td>
  1966. 4 Feb 2018
  1967. </td>
  1968. <td>
  1969. <span class="badge bg-secondary me-1"></span> Due in 3 Weeks
  1970. </td>
  1971. <td>$300</td>
  1972. <td class="text-end">
  1973. <span class="dropdown">
  1974. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1975. <div class="dropdown-menu dropdown-menu-end">
  1976. <a class="dropdown-item" href="#">
  1977. Action
  1978. </a>
  1979. <a class="dropdown-item" href="#">
  1980. Another action
  1981. </a>
  1982. </div>
  1983. </span>
  1984. </td>
  1985. </tr>
  1986. <tr>
  1987. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1988. <td><span class="text-muted">001407</span></td>
  1989. <td><a href="invoice.html" class="text-reset" tabindex="-1">Logo & Print</a></td>
  1990. <td>
  1991. <span class="flag flag-country-us"></span>
  1992. Apple
  1993. </td>
  1994. <td>
  1995. 87956621
  1996. </td>
  1997. <td>
  1998. 22 Mar 2018
  1999. </td>
  2000. <td>
  2001. <span class="badge bg-success me-1"></span> Paid Today
  2002. </td>
  2003. <td>$2500</td>
  2004. <td class="text-end">
  2005. <span class="dropdown">
  2006. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  2007. <div class="dropdown-menu dropdown-menu-end">
  2008. <a class="dropdown-item" href="#">
  2009. Action
  2010. </a>
  2011. <a class="dropdown-item" href="#">
  2012. Another action
  2013. </a>
  2014. </div>
  2015. </span>
  2016. </td>
  2017. </tr>
  2018. <tr>
  2019. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  2020. <td><span class="text-muted">001408</span></td>
  2021. <td><a href="invoice.html" class="text-reset" tabindex="-1">Icons</a></td>
  2022. <td>
  2023. <span class="flag flag-country-pl"></span>
  2024. Tookapic
  2025. </td>
  2026. <td>
  2027. 87956621
  2028. </td>
  2029. <td>
  2030. 13 May 2018
  2031. </td>
  2032. <td>
  2033. <span class="badge bg-success me-1"></span> Paid Today
  2034. </td>
  2035. <td>$940</td>
  2036. <td class="text-end">
  2037. <span class="dropdown">
  2038. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  2039. <div class="dropdown-menu dropdown-menu-end">
  2040. <a class="dropdown-item" href="#">
  2041. Action
  2042. </a>
  2043. <a class="dropdown-item" href="#">
  2044. Another action
  2045. </a>
  2046. </div>
  2047. </span>
  2048. </td>
  2049. </tr>
  2050. </tbody>
  2051. </table>
  2052. </div>
  2053. <div class="card-footer d-flex align-items-center">
  2054. <p class="m-0 text-muted">Showing <span>1</span> to <span>8</span> of <span>16</span> entries</p>
  2055. <ul class="pagination m-0 ms-auto">
  2056. <li class="page-item disabled">
  2057. <a class="page-link" href="#" tabindex="-1" aria-disabled="true">
  2058. <!-- Download SVG icon from http://tabler-icons.io/i/chevron-left -->
  2059. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M15 6l-6 6l6 6" /></svg>
  2060. prev
  2061. </a>
  2062. </li>
  2063. <li class="page-item"><a class="page-link" href="#">1</a></li>
  2064. <li class="page-item active"><a class="page-link" href="#">2</a></li>
  2065. <li class="page-item"><a class="page-link" href="#">3</a></li>
  2066. <li class="page-item"><a class="page-link" href="#">4</a></li>
  2067. <li class="page-item"><a class="page-link" href="#">5</a></li>
  2068. <li class="page-item">
  2069. <a class="page-link" href="#">
  2070. next <!-- Download SVG icon from http://tabler-icons.io/i/chevron-right -->
  2071. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 6l6 6l-6 6" /></svg>
  2072. </a>
  2073. </li>
  2074. </ul>
  2075. </div>
  2076. </div>
  2077. </div>
  2078. </div>
  2079. </div>
  2080. </div>
  2081. <footer class="footer footer-transparent d-print-none">
  2082. <div class="container-xl">
  2083. <div class="row text-center align-items-center flex-row-reverse">
  2084. <div class="col-lg-auto ms-lg-auto">
  2085. <ul class="list-inline list-inline-dots mb-0">
  2086. <li class="list-inline-item"><a href="https://tabler.io/docs" class="link-secondary">Documentation</a></li>
  2087. <li class="list-inline-item"><a href="./license.html" class="link-secondary">License</a></li>
  2088. <li class="list-inline-item"><a href="https://github.com/tabler/tabler" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
  2089. <li class="list-inline-item">
  2090. <a href="https://github.com/sponsors/codecalm" target="_blank" class="link-secondary" rel="noopener">
  2091. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  2092. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-pink icon-filled icon-inline" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  2093. Sponsor
  2094. </a>
  2095. </li>
  2096. </ul>
  2097. </div>
  2098. <div class="col-12 col-lg-auto mt-3 mt-lg-0">
  2099. <ul class="list-inline list-inline-dots mb-0">
  2100. <li class="list-inline-item">
  2101. Copyright &copy; 2023
  2102. <a href="." class="link-secondary">Tabler</a>.
  2103. All rights reserved.
  2104. </li>
  2105. <li class="list-inline-item">
  2106. <a href="./changelog.html" class="link-secondary" rel="noopener">
  2107. v1.0.0-beta18
  2108. </a>
  2109. </li>
  2110. </ul>
  2111. </div>
  2112. </div>
  2113. </div>
  2114. </footer>
  2115. </div>
  2116. </div>
  2117. <div class="modal modal-blur fade" id="modal-report" tabindex="-1" role="dialog" aria-hidden="true">
  2118. <div class="modal-dialog modal-lg" role="document">
  2119. <div class="modal-content">
  2120. <div class="modal-header">
  2121. <h5 class="modal-title">New report</h5>
  2122. <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  2123. </div>
  2124. <div class="modal-body">
  2125. <div class="mb-3">
  2126. <label class="form-label">Name</label>
  2127. <input type="text" class="form-control" name="example-text-input" placeholder="Your report name">
  2128. </div>
  2129. <label class="form-label">Report type</label>
  2130. <div class="form-selectgroup-boxes row mb-3">
  2131. <div class="col-lg-6">
  2132. <label class="form-selectgroup-item">
  2133. <input type="radio" name="report-type" value="1" class="form-selectgroup-input" checked>
  2134. <span class="form-selectgroup-label d-flex align-items-center p-3">
  2135. <span class="me-3">
  2136. <span class="form-selectgroup-check"></span>
  2137. </span>
  2138. <span class="form-selectgroup-label-content">
  2139. <span class="form-selectgroup-title strong mb-1">Simple</span>
  2140. <span class="d-block text-muted">Provide only basic data needed for the report</span>
  2141. </span>
  2142. </span>
  2143. </label>
  2144. </div>
  2145. <div class="col-lg-6">
  2146. <label class="form-selectgroup-item">
  2147. <input type="radio" name="report-type" value="1" class="form-selectgroup-input">
  2148. <span class="form-selectgroup-label d-flex align-items-center p-3">
  2149. <span class="me-3">
  2150. <span class="form-selectgroup-check"></span>
  2151. </span>
  2152. <span class="form-selectgroup-label-content">
  2153. <span class="form-selectgroup-title strong mb-1">Advanced</span>
  2154. <span class="d-block text-muted">Insert charts and additional advanced analyses to be inserted in the report</span>
  2155. </span>
  2156. </span>
  2157. </label>
  2158. </div>
  2159. </div>
  2160. <div class="row">
  2161. <div class="col-lg-8">
  2162. <div class="mb-3">
  2163. <label class="form-label">Report url</label>
  2164. <div class="input-group input-group-flat">
  2165. <span class="input-group-text">
  2166. https://tabler.io/reports/
  2167. </span>
  2168. <input type="text" class="form-control ps-0" value="report-01" autocomplete="off">
  2169. </div>
  2170. </div>
  2171. </div>
  2172. <div class="col-lg-4">
  2173. <div class="mb-3">
  2174. <label class="form-label">Visibility</label>
  2175. <select class="form-select">
  2176. <option value="1" selected>Private</option>
  2177. <option value="2">Public</option>
  2178. <option value="3">Hidden</option>
  2179. </select>
  2180. </div>
  2181. </div>
  2182. </div>
  2183. </div>
  2184. <div class="modal-body">
  2185. <div class="row">
  2186. <div class="col-lg-6">
  2187. <div class="mb-3">
  2188. <label class="form-label">Client name</label>
  2189. <input type="text" class="form-control">
  2190. </div>
  2191. </div>
  2192. <div class="col-lg-6">
  2193. <div class="mb-3">
  2194. <label class="form-label">Reporting period</label>
  2195. <input type="date" class="form-control">
  2196. </div>
  2197. </div>
  2198. <div class="col-lg-12">
  2199. <div>
  2200. <label class="form-label">Additional information</label>
  2201. <textarea class="form-control" rows="3"></textarea>
  2202. </div>
  2203. </div>
  2204. </div>
  2205. </div>
  2206. <div class="modal-footer">
  2207. <a href="#" class="btn btn-link link-secondary" data-bs-dismiss="modal">
  2208. Cancel
  2209. </a>
  2210. <a href="#" class="btn btn-primary ms-auto" data-bs-dismiss="modal">
  2211. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  2212. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 5l0 14" /><path d="M5 12l14 0" /></svg>
  2213. Create new report
  2214. </a>
  2215. </div>
  2216. </div>
  2217. </div>
  2218. </div>
  2219. <!-- Libs JS -->
  2220. <script src="./dist/libs/apexcharts/dist/apexcharts.min.js?1684072869" defer></script>
  2221. <script src="./dist/libs/jsvectormap/dist/js/jsvectormap.min.js?1684072869" defer></script>
  2222. <script src="./dist/libs/jsvectormap/dist/maps/world.js?1684072869" defer></script>
  2223. <script src="./dist/libs/jsvectormap/dist/maps/world-merc.js?1684072869" defer></script>
  2224. <!-- Tabler Core -->
  2225. <script src="./dist/js/tabler.min.js?1684072869" defer></script>
  2226. <script src="./dist/js/demo.min.js?1684072869" defer></script>
  2227. <script>
  2228. // @formatter:off
  2229. document.addEventListener("DOMContentLoaded", function () {
  2230. window.ApexCharts && (new ApexCharts(document.getElementById('chart-revenue-bg'), {
  2231. chart: {
  2232. type: "area",
  2233. fontFamily: 'inherit',
  2234. height: 40.0,
  2235. sparkline: {
  2236. enabled: true
  2237. },
  2238. animations: {
  2239. enabled: false
  2240. },
  2241. },
  2242. dataLabels: {
  2243. enabled: false,
  2244. },
  2245. fill: {
  2246. opacity: .16,
  2247. type: 'solid'
  2248. },
  2249. stroke: {
  2250. width: 2,
  2251. lineCap: "round",
  2252. curve: "smooth",
  2253. },
  2254. series: [{
  2255. name: "Profits",
  2256. data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 19, 46, 39, 62, 51, 35, 41, 67]
  2257. }],
  2258. tooltip: {
  2259. theme: 'dark'
  2260. },
  2261. grid: {
  2262. strokeDashArray: 4,
  2263. },
  2264. xaxis: {
  2265. labels: {
  2266. padding: 0,
  2267. },
  2268. tooltip: {
  2269. enabled: false
  2270. },
  2271. axisBorder: {
  2272. show: false,
  2273. },
  2274. type: 'datetime',
  2275. },
  2276. yaxis: {
  2277. labels: {
  2278. padding: 4
  2279. },
  2280. },
  2281. labels: [
  2282. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2283. ],
  2284. colors: [tabler.getColor("primary")],
  2285. legend: {
  2286. show: false,
  2287. },
  2288. })).render();
  2289. });
  2290. // @formatter:on
  2291. </script>
  2292. <script>
  2293. // @formatter:off
  2294. document.addEventListener("DOMContentLoaded", function () {
  2295. window.ApexCharts && (new ApexCharts(document.getElementById('chart-new-clients'), {
  2296. chart: {
  2297. type: "line",
  2298. fontFamily: 'inherit',
  2299. height: 40.0,
  2300. sparkline: {
  2301. enabled: true
  2302. },
  2303. animations: {
  2304. enabled: false
  2305. },
  2306. },
  2307. fill: {
  2308. opacity: 1,
  2309. },
  2310. stroke: {
  2311. width: [2, 1],
  2312. dashArray: [0, 3],
  2313. lineCap: "round",
  2314. curve: "smooth",
  2315. },
  2316. series: [{
  2317. name: "May",
  2318. data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 4, 46, 39, 62, 51, 35, 41, 67]
  2319. },{
  2320. name: "April",
  2321. data: [93, 54, 51, 24, 35, 35, 31, 67, 19, 43, 28, 36, 62, 61, 27, 39, 35, 41, 27, 35, 51, 46, 62, 37, 44, 53, 41, 65, 39, 37]
  2322. }],
  2323. tooltip: {
  2324. theme: 'dark'
  2325. },
  2326. grid: {
  2327. strokeDashArray: 4,
  2328. },
  2329. xaxis: {
  2330. labels: {
  2331. padding: 0,
  2332. },
  2333. tooltip: {
  2334. enabled: false
  2335. },
  2336. type: 'datetime',
  2337. },
  2338. yaxis: {
  2339. labels: {
  2340. padding: 4
  2341. },
  2342. },
  2343. labels: [
  2344. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2345. ],
  2346. colors: [tabler.getColor("primary"), tabler.getColor("gray-600")],
  2347. legend: {
  2348. show: false,
  2349. },
  2350. })).render();
  2351. });
  2352. // @formatter:on
  2353. </script>
  2354. <script>
  2355. // @formatter:off
  2356. document.addEventListener("DOMContentLoaded", function () {
  2357. window.ApexCharts && (new ApexCharts(document.getElementById('chart-active-users'), {
  2358. chart: {
  2359. type: "bar",
  2360. fontFamily: 'inherit',
  2361. height: 40.0,
  2362. sparkline: {
  2363. enabled: true
  2364. },
  2365. animations: {
  2366. enabled: false
  2367. },
  2368. },
  2369. plotOptions: {
  2370. bar: {
  2371. columnWidth: '50%',
  2372. }
  2373. },
  2374. dataLabels: {
  2375. enabled: false,
  2376. },
  2377. fill: {
  2378. opacity: 1,
  2379. },
  2380. series: [{
  2381. name: "Profits",
  2382. data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 19, 46, 39, 62, 51, 35, 41, 67]
  2383. }],
  2384. tooltip: {
  2385. theme: 'dark'
  2386. },
  2387. grid: {
  2388. strokeDashArray: 4,
  2389. },
  2390. xaxis: {
  2391. labels: {
  2392. padding: 0,
  2393. },
  2394. tooltip: {
  2395. enabled: false
  2396. },
  2397. axisBorder: {
  2398. show: false,
  2399. },
  2400. type: 'datetime',
  2401. },
  2402. yaxis: {
  2403. labels: {
  2404. padding: 4
  2405. },
  2406. },
  2407. labels: [
  2408. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2409. ],
  2410. colors: [tabler.getColor("primary")],
  2411. legend: {
  2412. show: false,
  2413. },
  2414. })).render();
  2415. });
  2416. // @formatter:on
  2417. </script>
  2418. <script>
  2419. // @formatter:off
  2420. document.addEventListener("DOMContentLoaded", function () {
  2421. window.ApexCharts && (new ApexCharts(document.getElementById('chart-mentions'), {
  2422. chart: {
  2423. type: "bar",
  2424. fontFamily: 'inherit',
  2425. height: 240,
  2426. parentHeightOffset: 0,
  2427. toolbar: {
  2428. show: false,
  2429. },
  2430. animations: {
  2431. enabled: false
  2432. },
  2433. stacked: true,
  2434. },
  2435. plotOptions: {
  2436. bar: {
  2437. columnWidth: '50%',
  2438. }
  2439. },
  2440. dataLabels: {
  2441. enabled: false,
  2442. },
  2443. fill: {
  2444. opacity: 1,
  2445. },
  2446. series: [{
  2447. name: "Web",
  2448. data: [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 12, 5, 8, 22, 6, 8, 6, 4, 1, 8, 24, 29, 51, 40, 47, 23, 26, 50, 26, 41, 22, 46, 47, 81, 46, 6]
  2449. },{
  2450. name: "Social",
  2451. data: [2, 5, 4, 3, 3, 1, 4, 7, 5, 1, 2, 5, 3, 2, 6, 7, 7, 1, 5, 5, 2, 12, 4, 6, 18, 3, 5, 2, 13, 15, 20, 47, 18, 15, 11, 10, 0]
  2452. },{
  2453. name: "Other",
  2454. data: [2, 9, 1, 7, 8, 3, 6, 5, 5, 4, 6, 4, 1, 9, 3, 6, 7, 5, 2, 8, 4, 9, 1, 2, 6, 7, 5, 1, 8, 3, 2, 3, 4, 9, 7, 1, 6]
  2455. }],
  2456. tooltip: {
  2457. theme: 'dark'
  2458. },
  2459. grid: {
  2460. padding: {
  2461. top: -20,
  2462. right: 0,
  2463. left: -4,
  2464. bottom: -4
  2465. },
  2466. strokeDashArray: 4,
  2467. xaxis: {
  2468. lines: {
  2469. show: true
  2470. }
  2471. },
  2472. },
  2473. xaxis: {
  2474. labels: {
  2475. padding: 0,
  2476. },
  2477. tooltip: {
  2478. enabled: false
  2479. },
  2480. axisBorder: {
  2481. show: false,
  2482. },
  2483. type: 'datetime',
  2484. },
  2485. yaxis: {
  2486. labels: {
  2487. padding: 4
  2488. },
  2489. },
  2490. labels: [
  2491. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19', '2020-07-20', '2020-07-21', '2020-07-22', '2020-07-23', '2020-07-24', '2020-07-25', '2020-07-26'
  2492. ],
  2493. colors: [tabler.getColor("primary"), tabler.getColor("primary", 0.8), tabler.getColor("green", 0.8)],
  2494. legend: {
  2495. show: false,
  2496. },
  2497. })).render();
  2498. });
  2499. // @formatter:on
  2500. </script>
  2501. <script>
  2502. // @formatter:on
  2503. document.addEventListener("DOMContentLoaded", function() {
  2504. const map = new jsVectorMap({
  2505. selector: '#map-world',
  2506. map: 'world',
  2507. backgroundColor: 'transparent',
  2508. regionStyle: {
  2509. initial: {
  2510. fill: tabler.getColor('body-bg'),
  2511. stroke: tabler.getColor('border-color'),
  2512. strokeWidth: 2,
  2513. }
  2514. },
  2515. zoomOnScroll: false,
  2516. zoomButtons: false,
  2517. // -------- Series --------
  2518. visualizeData: {
  2519. scale: [tabler.getColor('bg-surface'), tabler.getColor('primary')],
  2520. values: { "AF": 16, "AL": 11, "DZ": 158, "AO": 85, "AG": 1, "AR": 351, "AM": 8, "AU": 1219, "AT": 366, "AZ": 52, "BS": 7, "BH": 21, "BD": 105, "BB": 3, "BY": 52, "BE": 461, "BZ": 1, "BJ": 6, "BT": 1, "BO": 19, "BA": 16, "BW": 12, "BR": 2023, "BN": 11, "BG": 44, "BF": 8, "BI": 1, "KH": 11, "CM": 21, "CA": 1563, "CV": 1, "CF": 2, "TD": 7, "CL": 199, "CN": 5745, "CO": 283, "KM": 0, "CD": 12, "CG": 11, "CR": 35, "CI": 22, "HR": 59, "CY": 22, "CZ": 195, "DK": 304, "DJ": 1, "DM": 0, "DO": 50, "EC": 61, "EG": 216, "SV": 21, "GQ": 14, "ER": 2, "EE": 19, "ET": 30, "FJ": 3, "FI": 231, "FR": 2555, "GA": 12, "GM": 1, "GE": 11, "DE": 3305, "GH": 18, "GR": 305, "GD": 0, "GT": 40, "GN": 4, "GW": 0, "GY": 2, "HT": 6, "HN": 15, "HK": 226, "HU": 132, "IS": 12, "IN": 1430, "ID": 695, "IR": 337, "IQ": 84, "IE": 204, "IL": 201, "IT": 2036, "JM": 13, "JP": 5390, "JO": 27, "KZ": 129, "KE": 32, "KI": 0, "KR": 986, "KW": 117, "KG": 4, "LA": 6, "LV": 23, "LB": 39, "LS": 1, "LR": 0, "LY": 77, "LT": 35, "LU": 52, "MK": 9, "MG": 8, "MW": 5, "MY": 218, "MV": 1, "ML": 9, "MT": 7, "MR": 3, "MU": 9, "MX": 1004, "MD": 5, "MN": 5, "ME": 3, "MA": 91, "MZ": 10, "MM": 35, "NA": 11, "NP": 15, "NL": 770, "NZ": 138, "NI": 6, "NE": 5, "NG": 206, "NO": 413, "OM": 53, "PK": 174, "PA": 27, "PG": 8, "PY": 17, "PE": 153, "PH": 189, "PL": 438, "PT": 223, "QA": 126, "RO": 158, "RU": 1476, "RW": 5, "WS": 0, "ST": 0, "SA": 434, "SN": 12, "RS": 38, "SC": 0, "SL": 1, "SG": 217, "SK": 86, "SI": 46, "SB": 0, "ZA": 354, "ES": 1374, "LK": 48, "KN": 0, "LC": 1, "VC": 0, "SD": 65, "SR": 3, "SZ": 3, "SE": 444, "CH": 522, "SY": 59, "TW": 426, "TJ": 5, "TZ": 22, "TH": 312, "TL": 0, "TG": 3, "TO": 0, "TT": 21, "TN": 43, "TR": 729, "TM": 0, "UG": 17, "UA": 136, "AE": 239, "GB": 2258, "US": 4624, "UY": 40, "UZ": 37, "VU": 0, "VE": 285, "VN": 101, "YE": 30, "ZM": 15, "ZW": 5 },
  2521. },
  2522. });
  2523. window.addEventListener("resize", () => {
  2524. map.updateSize();
  2525. });
  2526. });
  2527. // @formatter:off
  2528. </script>
  2529. <script>
  2530. // @formatter:off
  2531. document.addEventListener("DOMContentLoaded", function () {
  2532. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-activity'), {
  2533. chart: {
  2534. type: "radialBar",
  2535. fontFamily: 'inherit',
  2536. height: 40,
  2537. width: 40,
  2538. animations: {
  2539. enabled: false
  2540. },
  2541. sparkline: {
  2542. enabled: true
  2543. },
  2544. },
  2545. tooltip: {
  2546. enabled: false,
  2547. },
  2548. plotOptions: {
  2549. radialBar: {
  2550. hollow: {
  2551. margin: 0,
  2552. size: '75%'
  2553. },
  2554. track: {
  2555. margin: 0
  2556. },
  2557. dataLabels: {
  2558. show: false
  2559. }
  2560. }
  2561. },
  2562. colors: [tabler.getColor("blue")],
  2563. series: [35],
  2564. })).render();
  2565. });
  2566. // @formatter:on
  2567. </script>
  2568. <script>
  2569. // @formatter:off
  2570. document.addEventListener("DOMContentLoaded", function () {
  2571. window.ApexCharts && (new ApexCharts(document.getElementById('chart-development-activity'), {
  2572. chart: {
  2573. type: "area",
  2574. fontFamily: 'inherit',
  2575. height: 192,
  2576. sparkline: {
  2577. enabled: true
  2578. },
  2579. animations: {
  2580. enabled: false
  2581. },
  2582. },
  2583. dataLabels: {
  2584. enabled: false,
  2585. },
  2586. fill: {
  2587. opacity: .16,
  2588. type: 'solid'
  2589. },
  2590. stroke: {
  2591. width: 2,
  2592. lineCap: "round",
  2593. curve: "smooth",
  2594. },
  2595. series: [{
  2596. name: "Purchases",
  2597. data: [3, 5, 4, 6, 7, 5, 6, 8, 24, 7, 12, 5, 6, 3, 8, 4, 14, 30, 17, 19, 15, 14, 25, 32, 40, 55, 60, 48, 52, 70]
  2598. }],
  2599. tooltip: {
  2600. theme: 'dark'
  2601. },
  2602. grid: {
  2603. strokeDashArray: 4,
  2604. },
  2605. xaxis: {
  2606. labels: {
  2607. padding: 0,
  2608. },
  2609. tooltip: {
  2610. enabled: false
  2611. },
  2612. axisBorder: {
  2613. show: false,
  2614. },
  2615. type: 'datetime',
  2616. },
  2617. yaxis: {
  2618. labels: {
  2619. padding: 4
  2620. },
  2621. },
  2622. labels: [
  2623. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2624. ],
  2625. colors: [tabler.getColor("primary")],
  2626. legend: {
  2627. show: false,
  2628. },
  2629. point: {
  2630. show: false
  2631. },
  2632. })).render();
  2633. });
  2634. // @formatter:on
  2635. </script>
  2636. <script>
  2637. // @formatter:off
  2638. document.addEventListener("DOMContentLoaded", function () {
  2639. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-1'), {
  2640. chart: {
  2641. type: "line",
  2642. fontFamily: 'inherit',
  2643. height: 24,
  2644. animations: {
  2645. enabled: false
  2646. },
  2647. sparkline: {
  2648. enabled: true
  2649. },
  2650. },
  2651. tooltip: {
  2652. enabled: false,
  2653. },
  2654. stroke: {
  2655. width: 2,
  2656. lineCap: "round",
  2657. },
  2658. series: [{
  2659. color: tabler.getColor("primary"),
  2660. data: [17, 24, 20, 10, 5, 1, 4, 18, 13]
  2661. }],
  2662. })).render();
  2663. });
  2664. // @formatter:on
  2665. </script>
  2666. <script>
  2667. // @formatter:off
  2668. document.addEventListener("DOMContentLoaded", function () {
  2669. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-2'), {
  2670. chart: {
  2671. type: "line",
  2672. fontFamily: 'inherit',
  2673. height: 24,
  2674. animations: {
  2675. enabled: false
  2676. },
  2677. sparkline: {
  2678. enabled: true
  2679. },
  2680. },
  2681. tooltip: {
  2682. enabled: false,
  2683. },
  2684. stroke: {
  2685. width: 2,
  2686. lineCap: "round",
  2687. },
  2688. series: [{
  2689. color: tabler.getColor("primary"),
  2690. data: [13, 11, 19, 22, 12, 7, 14, 3, 21]
  2691. }],
  2692. })).render();
  2693. });
  2694. // @formatter:on
  2695. </script>
  2696. <script>
  2697. // @formatter:off
  2698. document.addEventListener("DOMContentLoaded", function () {
  2699. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-3'), {
  2700. chart: {
  2701. type: "line",
  2702. fontFamily: 'inherit',
  2703. height: 24,
  2704. animations: {
  2705. enabled: false
  2706. },
  2707. sparkline: {
  2708. enabled: true
  2709. },
  2710. },
  2711. tooltip: {
  2712. enabled: false,
  2713. },
  2714. stroke: {
  2715. width: 2,
  2716. lineCap: "round",
  2717. },
  2718. series: [{
  2719. color: tabler.getColor("primary"),
  2720. data: [10, 13, 10, 4, 17, 3, 23, 22, 19]
  2721. }],
  2722. })).render();
  2723. });
  2724. // @formatter:on
  2725. </script>
  2726. <script>
  2727. // @formatter:off
  2728. document.addEventListener("DOMContentLoaded", function () {
  2729. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-4'), {
  2730. chart: {
  2731. type: "line",
  2732. fontFamily: 'inherit',
  2733. height: 24,
  2734. animations: {
  2735. enabled: false
  2736. },
  2737. sparkline: {
  2738. enabled: true
  2739. },
  2740. },
  2741. tooltip: {
  2742. enabled: false,
  2743. },
  2744. stroke: {
  2745. width: 2,
  2746. lineCap: "round",
  2747. },
  2748. series: [{
  2749. color: tabler.getColor("primary"),
  2750. data: [6, 15, 13, 13, 5, 7, 17, 20, 19]
  2751. }],
  2752. })).render();
  2753. });
  2754. // @formatter:on
  2755. </script>
  2756. <script>
  2757. // @formatter:off
  2758. document.addEventListener("DOMContentLoaded", function () {
  2759. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-5'), {
  2760. chart: {
  2761. type: "line",
  2762. fontFamily: 'inherit',
  2763. height: 24,
  2764. animations: {
  2765. enabled: false
  2766. },
  2767. sparkline: {
  2768. enabled: true
  2769. },
  2770. },
  2771. tooltip: {
  2772. enabled: false,
  2773. },
  2774. stroke: {
  2775. width: 2,
  2776. lineCap: "round",
  2777. },
  2778. series: [{
  2779. color: tabler.getColor("primary"),
  2780. data: [2, 11, 15, 14, 21, 20, 8, 23, 18, 14]
  2781. }],
  2782. })).render();
  2783. });
  2784. // @formatter:on
  2785. </script>
  2786. <script>
  2787. // @formatter:off
  2788. document.addEventListener("DOMContentLoaded", function () {
  2789. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-6'), {
  2790. chart: {
  2791. type: "line",
  2792. fontFamily: 'inherit',
  2793. height: 24,
  2794. animations: {
  2795. enabled: false
  2796. },
  2797. sparkline: {
  2798. enabled: true
  2799. },
  2800. },
  2801. tooltip: {
  2802. enabled: false,
  2803. },
  2804. stroke: {
  2805. width: 2,
  2806. lineCap: "round",
  2807. },
  2808. series: [{
  2809. color: tabler.getColor("primary"),
  2810. data: [22, 12, 7, 14, 3, 21, 8, 23, 18, 14]
  2811. }],
  2812. })).render();
  2813. });
  2814. // @formatter:on
  2815. </script>
  2816. </body>
  2817. </html>