Move the screenshot back so pypi can see it and use commit specific links for screenshots from now on

main
Thu Trang Pham 2020-11-30 09:05:04 -08:00
parent 86b87308ab
commit 975f40c16f
3 changed files with 6 additions and 3 deletions

View File

@ -4,9 +4,9 @@
AdminConfirmMixin is a mixin for ModelAdmin to add confirmations to change, add and actions. AdminConfirmMixin is a mixin for ModelAdmin to add confirmations to change, add and actions.
![Screenshot of Change Confirmation Page](https://raw.githubusercontent.com/TrangPham/django-admin-confirm/main/screenshot_confirm_change.png) ![Screenshot of Change Confirmation Page](https://raw.githubusercontent.com/TrangPham/django-admin-confirm/32192d3988a9bd44c734a66baff91f02dd28136b/screenshot.png)
![Screenshot of Action Confirmation Page](https://raw.githubusercontent.com/TrangPham/django-admin-confirm/main/screenshot_confirm_action.png) ![Screenshot of Action Confirmation Page](https://raw.githubusercontent.com/TrangPham/django-admin-confirm/264900a21658cc979dd2026038db73f8a1b73c64/screenshot_confirm_action.png)
It can be configured to add a confirmation page on ModelAdmin upon: It can be configured to add a confirmation page on ModelAdmin upon:

View File

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 107 KiB

View File

@ -6,7 +6,7 @@ README = open(os.path.join(here, "README.md")).read()
setup( setup(
name="django-admin-confirm", name="django-admin-confirm",
version="0.2.dev1", version="0.2.dev2",
packages=["admin_confirm"], packages=["admin_confirm"],
description="Adds confirmation to Django Admin changes, additions and actions", description="Adds confirmation to Django Admin changes, additions and actions",
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
@ -19,4 +19,7 @@ setup(
"Django>=1.7", "Django>=1.7",
], ],
python_requires=">=3", python_requires=">=3",
project_urls={
"Release Notes": "https://github.com/TrangPham/django-admin-confirm/releases",
},
) )