layout-combo.html 155 KB

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