-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated ugettext_lazy, url(), NullBooleanField, ifequal/ifnotequal, and CachedStaticFilesStorage. Added DEFAULT_AUTO_FIELD, removed login view and nose. Pinned tox to 3.9 and added keepdb. Upgrade reversion.
- Loading branch information
Showing
36 changed files
with
276 additions
and
313 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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from django.conf.urls import url | ||
from django.urls import path | ||
from lp import views | ||
|
||
|
||
urlpatterns = [ | ||
url(r'^edition/$', views.edition), | ||
url(r'^sample/$', views.sample), | ||
url(r'^meta.json$', views.meta_json), | ||
url(r'^icon.png$', views.icon), | ||
path('edition/', views.edition), | ||
path('sample/', views.sample), | ||
path('meta.json', views.meta_json), | ||
path('icon.png', views.icon), | ||
] |
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
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
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,8 +1,10 @@ | ||
mysqlclient==2.0.2 | ||
Pillow==10.1.0 | ||
# Upgrade to 8.0.0 when DJ3 | ||
django-cleanup==6.0.0 | ||
django-contrib-comments==2.2.0 | ||
django-nose==1.4.7 | ||
django-reversion==3.0.7 | ||
# Upgrade to 5.0.8 when DJ3 | ||
django-reversion==4.0.2 | ||
# Upgrade to 12.10.0 when running on DJ3 | ||
sorl-thumbnail==12.8.0 | ||
python-dateutil==2.8.2 |
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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{% ifnotequal object.id duplicate.id %} | ||
{% if object.id != duplicate.id %} | ||
<div class="secondary"> | ||
<form action="{{ object.get_absolute_url }}/merge" method="post">{% csrf_token %} | ||
<p align="center"><input type="submit" name="dupe" value="This is a duplicate of {{ duplicate.name }}" id="edit-form-submit"> | ||
<br><input type="submit" name="stop" value="Stop looking for duplicates"></p> | ||
</form> | ||
</div> | ||
{% endifnotequal %} | ||
{% endif %} |
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
Oops, something went wrong.