layout-combo.html 151 KB

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