|
| 1 | +{% extends "layouts/base.html" %} |
| 2 | +{% load i18n static %} |
| 3 | + |
| 4 | +{% block title %} Tables {% endblock title %} |
| 5 | + |
| 6 | +{% block overlay %} |
| 7 | + <div class="min-height-300 bg-primary position-absolute w-100"></div> |
| 8 | +{% endblock overlay %} |
| 9 | + |
| 10 | +{% block content %} |
| 11 | + <div class="container-fluid py-4"> |
| 12 | + <div class="row"> |
| 13 | + <div class="col-12"> |
| 14 | + <div class="card mb-4"> |
| 15 | + <div class="card-header pb-0"> |
| 16 | + <h6>Authors table</h6> |
| 17 | + </div> |
| 18 | + <div class="card-body px-0 pt-0 pb-2"> |
| 19 | + <div class="table-responsive p-0"> |
| 20 | + <table class="table align-items-center mb-0"> |
| 21 | + <thead> |
| 22 | + <tr> |
| 23 | + <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Author</th> |
| 24 | + <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Function</th> |
| 25 | + <th class="text-center text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Status</th> |
| 26 | + <th class="text-center text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Employed</th> |
| 27 | + <th class="text-secondary opacity-7"></th> |
| 28 | + </tr> |
| 29 | + </thead> |
| 30 | + <tbody> |
| 31 | + <tr> |
| 32 | + <td> |
| 33 | + <div class="d-flex px-2 py-1"> |
| 34 | + <div> |
| 35 | + <img src="{% static 'img/team-2.jpg' %}" class="avatar avatar-sm me-3" alt="user1"> |
| 36 | + </div> |
| 37 | + <div class="d-flex flex-column justify-content-center"> |
| 38 | + <h6 class="mb-0 text-sm">Author Name</h6> |
| 39 | + <p class="text-xs text-secondary mb-0">Author Email</p> |
| 40 | + </div> |
| 41 | + </div> |
| 42 | + </td> |
| 43 | + <td> |
| 44 | + <p class="text-xs font-weight-bold mb-0">Manager</p> |
| 45 | + <p class="text-xs text-secondary mb-0">Organization</p> |
| 46 | + </td> |
| 47 | + <td class="align-middle text-center text-sm"> |
| 48 | + <span class="badge badge-sm bg-gradient-success">Online</span> |
| 49 | + </td> |
| 50 | + <td class="align-middle text-center"> |
| 51 | + <span class="text-secondary text-xs font-weight-bold">23/04/18</span> |
| 52 | + </td> |
| 53 | + <td class="align-middle"> |
| 54 | + <a href="javascript:;" class="text-secondary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="Edit user"> |
| 55 | + Edit |
| 56 | + </a> |
| 57 | + </td> |
| 58 | + </tr> |
| 59 | + <tr> |
| 60 | + <td> |
| 61 | + <div class="d-flex px-2 py-1"> |
| 62 | + <div> |
| 63 | + <img src="{% static 'img/team-3.jpg' %}" class="avatar avatar-sm me-3" alt="user2"> |
| 64 | + </div> |
| 65 | + <div class="d-flex flex-column justify-content-center"> |
| 66 | + <h6 class="mb-0 text-sm">Author Name</h6> |
| 67 | + <p class="text-xs text-secondary mb-0">Author Email</p> |
| 68 | + </div> |
| 69 | + </div> |
| 70 | + </td> |
| 71 | + <td> |
| 72 | + <p class="text-xs font-weight-bold mb-0">Programator</p> |
| 73 | + <p class="text-xs text-secondary mb-0">Developer</p> |
| 74 | + </td> |
| 75 | + <td class="align-middle text-center text-sm"> |
| 76 | + <span class="badge badge-sm bg-gradient-secondary">Offline</span> |
| 77 | + </td> |
| 78 | + <td class="align-middle text-center"> |
| 79 | + <span class="text-secondary text-xs font-weight-bold">11/01/19</span> |
| 80 | + </td> |
| 81 | + <td class="align-middle"> |
| 82 | + <a href="javascript:;" class="text-secondary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="Edit user"> |
| 83 | + Edit |
| 84 | + </a> |
| 85 | + </td> |
| 86 | + </tr> |
| 87 | + <tr> |
| 88 | + <td> |
| 89 | + <div class="d-flex px-2 py-1"> |
| 90 | + <div> |
| 91 | + <img src="{% static 'img/team-4.jpg' %}" class="avatar avatar-sm me-3" alt="user3"> |
| 92 | + </div> |
| 93 | + <div class="d-flex flex-column justify-content-center"> |
| 94 | + <h6 class="mb-0 text-sm">Author Name</h6> |
| 95 | + <p class="text-xs text-secondary mb-0">Author Email</p> |
| 96 | + </div> |
| 97 | + </div> |
| 98 | + </td> |
| 99 | + <td> |
| 100 | + <p class="text-xs font-weight-bold mb-0">Executive</p> |
| 101 | + <p class="text-xs text-secondary mb-0">Projects</p> |
| 102 | + </td> |
| 103 | + <td class="align-middle text-center text-sm"> |
| 104 | + <span class="badge badge-sm bg-gradient-success">Online</span> |
| 105 | + </td> |
| 106 | + <td class="align-middle text-center"> |
| 107 | + <span class="text-secondary text-xs font-weight-bold">19/09/17</span> |
| 108 | + </td> |
| 109 | + <td class="align-middle"> |
| 110 | + <a href="javascript:;" class="text-secondary font-weight-bold text-xs" data-toggle="tooltip" data-original-title="Edit user"> |
| 111 | + Edit |
| 112 | + </a> |
| 113 | + </td> |
| 114 | + </tr> |
| 115 | + </tbody> |
| 116 | + </table> |
| 117 | + </div> |
| 118 | + </div> |
| 119 | + </div> |
| 120 | + </div> |
| 121 | + </div> |
| 122 | + <div class="row"> |
| 123 | + <div class="col-12"> |
| 124 | + <div class="card mb-4"> |
| 125 | + <div class="card-header pb-0"> |
| 126 | + <h6>Projects table</h6> |
| 127 | + </div> |
| 128 | + <div class="card-body px-0 pt-0 pb-2"> |
| 129 | + <div class="table-responsive p-0"> |
| 130 | + <table class="table align-items-center justify-content-center mb-0"> |
| 131 | + <thead> |
| 132 | + <tr> |
| 133 | + <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Project</th> |
| 134 | + <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Budget</th> |
| 135 | + <th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Status</th> |
| 136 | + <th class="text-uppercase text-secondary text-xxs font-weight-bolder text-center opacity-7 ps-2">Completion</th> |
| 137 | + <th></th> |
| 138 | + </tr> |
| 139 | + </thead> |
| 140 | + <tbody> |
| 141 | + <tr> |
| 142 | + <td> |
| 143 | + <div class="d-flex px-2"> |
| 144 | + <div> |
| 145 | + <img src="{% static 'img/small-logos/logo-spotify.svg' %}" class="avatar avatar-sm rounded-circle me-2" alt="spotify"> |
| 146 | + </div> |
| 147 | + <div class="my-auto"> |
| 148 | + <h6 class="mb-0 text-sm">Project Name</h6> |
| 149 | + </div> |
| 150 | + </div> |
| 151 | + </td> |
| 152 | + <td> |
| 153 | + <p class="text-sm font-weight-bold mb-0">$2,500</p> |
| 154 | + </td> |
| 155 | + <td> |
| 156 | + <span class="text-xs font-weight-bold">working</span> |
| 157 | + </td> |
| 158 | + <td class="align-middle text-center"> |
| 159 | + <div class="d-flex align-items-center justify-content-center"> |
| 160 | + <span class="me-2 text-xs font-weight-bold">60%</span> |
| 161 | + <div> |
| 162 | + <div class="progress"> |
| 163 | + <div class="progress-bar bg-gradient-info" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;"></div> |
| 164 | + </div> |
| 165 | + </div> |
| 166 | + </div> |
| 167 | + </td> |
| 168 | + <td class="align-middle"> |
| 169 | + <button class="btn btn-link text-secondary mb-0"> |
| 170 | + <i class="fa fa-ellipsis-v text-xs"></i> |
| 171 | + </button> |
| 172 | + </td> |
| 173 | + </tr> |
| 174 | + <tr> |
| 175 | + <td> |
| 176 | + <div class="d-flex px-2"> |
| 177 | + <div> |
| 178 | + <img src="{% static 'img/small-logos/logo-invision.svg' %}" class="avatar avatar-sm rounded-circle me-2" alt="invision"> |
| 179 | + </div> |
| 180 | + <div class="my-auto"> |
| 181 | + <h6 class="mb-0 text-sm">Project Name</h6> |
| 182 | + </div> |
| 183 | + </div> |
| 184 | + </td> |
| 185 | + <td> |
| 186 | + <p class="text-sm font-weight-bold mb-0">$5,000</p> |
| 187 | + </td> |
| 188 | + <td> |
| 189 | + <span class="text-xs font-weight-bold">done</span> |
| 190 | + </td> |
| 191 | + <td class="align-middle text-center"> |
| 192 | + <div class="d-flex align-items-center justify-content-center"> |
| 193 | + <span class="me-2 text-xs font-weight-bold">100%</span> |
| 194 | + <div> |
| 195 | + <div class="progress"> |
| 196 | + <div class="progress-bar bg-gradient-success" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;"></div> |
| 197 | + </div> |
| 198 | + </div> |
| 199 | + </div> |
| 200 | + </td> |
| 201 | + <td class="align-middle"> |
| 202 | + <button class="btn btn-link text-secondary mb-0" aria-haspopup="true" aria-expanded="false"> |
| 203 | + <i class="fa fa-ellipsis-v text-xs"></i> |
| 204 | + </button> |
| 205 | + </td> |
| 206 | + </tr> |
| 207 | + <tr> |
| 208 | + <td> |
| 209 | + <div class="d-flex px-2"> |
| 210 | + <div> |
| 211 | + <img src="{% static 'img/small-logos/logo-jira.svg' %}" class="avatar avatar-sm rounded-circle me-2" alt="jira"> |
| 212 | + </div> |
| 213 | + <div class="my-auto"> |
| 214 | + <h6 class="mb-0 text-sm">Project Name</h6> |
| 215 | + </div> |
| 216 | + </div> |
| 217 | + </td> |
| 218 | + <td> |
| 219 | + <p class="text-sm font-weight-bold mb-0">$3,400</p> |
| 220 | + </td> |
| 221 | + <td> |
| 222 | + <span class="text-xs font-weight-bold">canceled</span> |
| 223 | + </td> |
| 224 | + <td class="align-middle text-center"> |
| 225 | + <div class="d-flex align-items-center justify-content-center"> |
| 226 | + <span class="me-2 text-xs font-weight-bold">30%</span> |
| 227 | + <div> |
| 228 | + <div class="progress"> |
| 229 | + <div class="progress-bar bg-gradient-danger" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="30" style="width: 30%;"></div> |
| 230 | + </div> |
| 231 | + </div> |
| 232 | + </div> |
| 233 | + </td> |
| 234 | + <td class="align-middle"> |
| 235 | + <button class="btn btn-link text-secondary mb-0" aria-haspopup="true" aria-expanded="false"> |
| 236 | + <i class="fa fa-ellipsis-v text-xs"></i> |
| 237 | + </button> |
| 238 | + </td> |
| 239 | + </tr> |
| 240 | + |
| 241 | + </tbody> |
| 242 | + </table> |
| 243 | + </div> |
| 244 | + </div> |
| 245 | + </div> |
| 246 | + </div> |
| 247 | + </div> |
| 248 | + {% include 'includes/footer.html' %} |
| 249 | + </div> |
| 250 | +{% endblock content %} |
0 commit comments