layout-vertical.html 143 KB

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