Disco DeDisco
|
94f3120add
|
refactored to green: all references in urlpatterns thruout project to apps/ dir now skip it & point directly to the app contained w.in (i.e., not apps/lyric/ or apps/dashboard/, but lyric/ or dashboard/ now
ci/woodpecker/push/woodpecker Pipeline was successful
|
2026-02-22 22:08:34 -05:00 |
|
Disco DeDisco
|
a8c199b719
|
ensured in apps.dashboard.views, w. passing ITs in .tests.integrated.test_views & passing FT in functional_tests.test_sharing, passes only to recipients & owner
|
2026-02-22 21:50:25 -05:00 |
|
Disco DeDisco
|
17eb83c760
|
plugged share_list() FBV ability for user to share list w. self as recipient
|
2026-02-22 21:18:22 -05:00 |
|
Disco DeDisco
|
a06fce26ef
|
reorganized and reclassified old 'unit tests' for ea. app into dirs for UTs & ITs; abandoning effort to refactor any test_views into UTs; all tests passing
ci/woodpecker/push/woodpecker Pipeline was successful
|
2026-02-18 19:07:02 -05:00 |
|
Disco DeDisco
|
64d4ba9542
|
added to apps.dashboard.views, share_list() FBV, a try/except catch that accounts for nonexistent users; .test.test_views ensures functionality
ci/woodpecker/push/woodpecker Pipeline failed
|
2026-02-18 15:14:35 -05:00 |
|
Disco DeDisco
|
0370f36e9e
|
list sharing implemented w. passing UTs & FTs; changes to apps.dashboard.urls, .models, .views & .tests.test_views to accomodate; functional_tests.test_sharing also ensures sharing visible in UX; templates/apps/dashboard/list.html & /my_lists.html updated with django templating & for loops
|
2026-02-18 13:53:05 -05:00 |
|
Disco DeDisco
|
d74189f0b7
|
ensured my_list is viewable by auth user only
ci/woodpecker/push/woodpecker Pipeline was successful
|
2026-02-17 20:26:42 -05:00 |
|
Disco DeDisco
|
4e1feddb45
|
new name @property in List model, replete w. proper testing in tests.test_models
|
2026-02-08 22:50:03 -05:00 |
|
Disco DeDisco
|
94a161fe09
|
List objects now container owner values, saved upon creation, linked to user fk; apps.dashboard.views updated accordingly; 36 UTs passing (2 new)
|
2026-02-08 22:33:15 -05:00 |
|
Disco DeDisco
|
6c0e9bb6ec
|
new_list() FBV tries to assign List owner, but List() model has no such attr
|
2026-02-08 22:23:43 -05:00 |
|
Disco DeDisco
|
c176fe6cb3
|
new UT ensures correct list ownership from apps.dashboard.views
|
2026-02-08 22:18:41 -05:00 |
|
Disco DeDisco
|
07a76cb32d
|
added new template apps/dashboard/my_lists.html; all FTs passing green locally, tho half og .test_my_lists TODO'd out; test_login uses mock-patch architecture to avoid Mailgun and DigitalOcean magic login link testing restraints
|
2026-02-07 22:47:04 -05:00 |
|
Disco DeDisco
|
0c413a9cc2
|
pre–db-reset commit; attempting to update User model w. uuid pk enumeration
|
2026-02-07 20:15:27 -05:00 |
|
Disco DeDisco
|
a734901b80
|
started lyric app (in earnest this time); added bootstrap-classed navbar w. login form to base.html; tweaked apps.dashboard.tests.test_views to accomodate multiple forms on same page
|
2026-01-29 15:21:54 -05:00 |
|
Disco DeDisco
|
373b20d516
|
missed a crucial line in an apps.dashboard.tests.test_forms test method to ensure the form is_valid(); has now been rectified so that all UTs & FTs pass
|
2026-01-24 13:44:38 -05:00 |
|
Disco DeDisco
|
6627042b7a
|
removed reliance on built-in django ModelForms from templates/core/base.html, apps.dashboard.forms, .tests.test_forms & .test_views
|
2026-01-24 13:36:31 -05:00 |
|
Disco DeDisco
|
0afc5ee8d7
|
defined Meta ordering of the Item() model in apps.dashboard.models; Item() also now returns a __str__ result; in .forms, defined a specific use-case of is_valid() method; a pair of new UTs in .tests.test_models help confirm str representation and list order of items; .test_forms now ensures the .is-invalid bootstrap class is tested as a css class attr; migrations run; full UT & FT suite back to passing state (tho a refactor of flimsy form customizations is desperately needed)
|
2026-01-24 13:00:12 -05:00 |
|
Disco DeDisco
|
49491e2497
|
new save FBVs, methods & test methods
|
2026-01-23 22:39:12 -05:00 |
|
Disco DeDisco
|
f27b9ffb52
|
apps.dashboard.views & .tests.test_views now take advantage of DUPLICATE_ITEM_ERROR & ExistingListItemForm() from .forms
|
2026-01-23 22:30:42 -05:00 |
|
Disco DeDisco
|
004241d52d
|
new form model in apps.dashboard.forms to handle existing item-lists; new test model in .tests.test_forms to accommodate; also new method in .test_views, but skipped for now
|
2026-01-23 22:23:40 -05:00 |
|
Disco DeDisco
|
6804d3aaae
|
actually committed previously enumerated changes; the previous commit actually contained only the migrations reflecting these changes
|
2026-01-23 21:51:56 -05:00 |
|
Disco DeDisco
|
8a9f7c8af8
|
changed #id-list-table everywhere to #id_list_table; duplicate item validation in apps.dashboard.tests.test_models, where ListAndItemModelsTest has been broken out into two different test models
|
2026-01-23 21:50:49 -05:00 |
|
Disco DeDisco
|
fa5700d9e8
|
added Meta class to Item() model to test for duplicate item/list entries
|
2026-01-21 15:29:47 -05:00 |
|
Disco DeDisco
|
f841408488
|
custom save method implemented in ItemForm(); views & tests updated accordingly (all UTs & FTs passing)
|
2026-01-21 15:02:26 -05:00 |
|
Disco DeDisco
|
1d96871d7b
|
emancipated hardcoded form views & html from base.html, apps.dashboard.views, apps.dashboard.tests.test_views; added get_item_input_box() helper method to functional_tests.base & retrofitted the other FTs to utilize it
|
2026-01-20 15:14:05 -05:00 |
|
Disco DeDisco
|
93cc6632c4
|
found-n-replaced all instances of name='item_text' w. ='text'
|
2026-01-19 22:33:21 -05:00 |
|
Disco DeDisco
|
0014d9124a
|
created apps.dashboard.forms & commensurate apps.dashboard.tests.test_forms; new ItemForm() ModelForm & EMPTY_ITEM_ERROR constant
|
2026-01-19 22:01:33 -05:00 |
|
Disco DeDisco
|
5af5ff55fa
|
invoked get_absolute_url() on List model to achieve DRY urls in views
|
2026-01-19 19:25:04 -05:00 |
|
Disco DeDisco
|
91ede73e89
|
now enforcing model validation in list FBV; all UTs & FTs passing
|
2026-01-19 19:09:11 -05:00 |
|
Disco DeDisco
|
af3e20faef
|
apps.dashboard.views refactored to handle new item POST requests; add_item() FBV eliminated for newfound redundancy
|
2026-01-19 18:48:21 -05:00 |
|
Disco DeDisco
|
8d23d9f2c2
|
not getting the same precise error message, but perhaps the intent is the same?; anyway, updated views & some FTs, base.html for more dynamic error handling (tho incomplete)
|
2026-01-19 16:35:00 -05:00 |
|
Disco DeDisco
|
d05d296f65
|
split apps.dashboard unittests into test_views & test_models
|
2026-01-14 13:56:21 -05:00 |
|
Disco DeDisco
|
29f5b56487
|
moved dashboard app unittests into apps.dashboard.tests.test_all
|
2026-01-14 13:51:00 -05:00 |
|