Changeset 595d2e5 for KernelRecordsMVC.Web/Views/Admin
- Timestamp:
- 09/02/26 05:22:09 (4 weeks ago)
- Branches:
- main
- Children:
- 1dcdb2c
- Parents:
- d89d25b
- Location:
- KernelRecordsMVC.Web/Views/Admin
- Files:
-
- 2 edited
-
CreateRelease.cshtml (modified) (3 diffs)
-
Index.cshtml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
KernelRecordsMVC.Web/Views/Admin/CreateRelease.cshtml
rd89d25b r595d2e5 43 43 44 44 45 <div asp-validation-summary=" ModelOnly"45 <div asp-validation-summary="All" 46 46 class="admin-validation"> 47 47 </div> 48 49 48 50 49 <!-- ================================================= … … 489 488 <input asp-for="Tracks[i].SongDuration" 490 489 data-field="SongDuration" 491 placeholder="03:42" /> 490 placeholder="03:42" 491 inputmode="numeric" 492 maxlength="5" /> 492 493 493 494 <span asp-validation-for="Tracks[i].SongDuration" … … 645 646 <input type="text" 646 647 data-field="SongDuration" 647 placeholder="03:42" /> 648 placeholder="03:42" 649 inputmode="numeric" 650 maxlength="5" 651 pattern="\d{1,2}:[0-5]\d" 652 title="Enter a duration like 03:42" /> 648 653 649 654 </div> -
KernelRecordsMVC.Web/Views/Admin/Index.cshtml
rd89d25b r595d2e5 13 13 <div> 14 14 15 <img src="~/images/logo.png"16 asp-append-version="true"17 alt="Kernel Records"18 class="admin-page-logo" />19 20 15 <h1>Admin Dashboard</h1> 21 16 … … 310 305 </section> 311 306 312 313 <!-- =====================================================314 WORKFLOW INFO315 ===================================================== -->316 317 <section class="admin-section">318 319 <div class="admin-section-heading">320 321 <div>322 323 <span class="admin-eyebrow">324 ADMIN WORKFLOW325 </span>326 327 <h2>Catalog Process</h2>328 329 </div>330 331 </div>332 333 334 <div class="admin-workflow-grid">335 336 <div class="admin-workflow-card">337 338 <span class="admin-workflow-number">339 01340 </span>341 342 <div>343 344 <strong>345 Create Release346 </strong>347 348 <p>349 Add the album or single,350 artists and track information.351 </p>352 353 </div>354 355 </div>356 357 358 <div class="admin-workflow-card">359 360 <span class="admin-workflow-number">361 02362 </span>363 364 <div>365 366 <strong>367 Create Product368 </strong>369 370 <p>371 Add its vinyl, CD or cassette372 store edition.373 </p>374 375 </div>376 377 </div>378 379 380 <div class="admin-workflow-card">381 382 <span class="admin-workflow-number">383 03384 </span>385 386 <div>387 388 <strong>389 Manage Inventory390 </strong>391 392 <p>393 Change prices, stock,394 descriptions or apply discounts.395 </p>396 397 </div>398 399 </div>400 401 </div>402 403 </section>404 405 307 </div>
Note:
See TracChangeset
for help on using the changeset viewer.
