index.html 147 KB

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