mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 19:33:05 +00:00
9c48085829
* Experiment with bookmark details * Add basic tests * Refactor details into modal * Implement edit and delete button * Remove slide down animation * Add fallback details view * Add status actions * Improve dark theme * Improve return URLs * Make bookmark details sharable * Fix E2E tests
8 lines
287 B
Python
8 lines
287 B
Python
from django.urls import reverse
|
|
|
|
from bookmarks.tests.test_bookmark_details_modal import BookmarkDetailsModalTestCase
|
|
|
|
|
|
class BookmarkDetailsViewTestCase(BookmarkDetailsModalTestCase):
|
|
def get_base_url(self, bookmark):
|
|
return reverse("bookmarks:details", args=[bookmark.id])
|