-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from anexia/fixes_requires_dist
Use custom css to fix external depenceny upload restriction
- Loading branch information
Showing
8 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
.idea/* | ||
*.egg-info* | ||
__pycache__ | ||
db.sqlite3 | ||
db.sqlite3 | ||
build/* | ||
tests/static/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include LICENSE | ||
include README.md | ||
recursive-include django_future_tasks/static * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
django_future_tasks/static/django_future_tasks/cronfield.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.cc_wrapper .cc_element { | ||
width: 160px; | ||
} | ||
|
||
.cc_wrapper .cc_element select { | ||
margin-bottom: 2px; | ||
} | ||
|
||
.cc_wrapper .cc_element .button { | ||
width: 76px; | ||
margin: 2px; | ||
} | ||
|
||
.cc_wrapper .cc_element .fleft { | ||
width: 75px; | ||
margin: 2px; | ||
} | ||
|
||
.cc_wrapper .cc_element .fright { | ||
margin: 2px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
install_requires=[ | ||
"croniter>=1.4.1,<1.5", | ||
"cron-descriptor>=1.4.0,<1.5", | ||
"django-cronfield @ git+https://github.com/galipnik/[email protected]", | ||
"django-cronfield>=0.2.0,<0.3", | ||
], | ||
license="MIT License", | ||
description="A library to create periodic, cron-like tasks or single tasks with a specified execution/start time and schedule it to run in the future.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from django.contrib import admin | ||
from django.urls import include, path | ||
|
||
urlpatterns = [path("admin/", admin.site.urls)] |