-
Notifications
You must be signed in to change notification settings - Fork 772
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
694 additions
and
128 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 |
---|---|---|
|
@@ -9,8 +9,8 @@ Django JET | |
|
||
Django JET has two kinds of licenses: open-source (GPLv2) and commercial. Please note that using GPLv2 | ||
code in your programs make them GPL too. So if you don't want to comply with that we can provide you a commercial | ||
license (in this case please email at [email protected]). The commercial license | ||
is designed for using Django JET in commercial products and applications without the provisions of the GPLv2. | ||
license (visit Home page). The commercial license is designed for using Django JET in commercial products | ||
and applications without the provisions of the GPLv2. | ||
|
||
.. image:: https://raw.githubusercontent.com/geex-arts/jet/static/logo.png | ||
:width: 500px | ||
|
@@ -43,10 +43,6 @@ Screenshots | |
:align: center | ||
:target: https://raw.githubusercontent.com/geex-arts/jet/static/screen3.png | ||
|
||
Beta | ||
==== | ||
Current version is still in beta phase. Use it at your own risk (though may be already enough workable). | ||
|
||
License | ||
======= | ||
Django JET is licensed under a | ||
|
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 +1 @@ | ||
VERSION = '0.1.4' | ||
VERSION = '0.1.5' |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,25 +0,0 @@ | ||
django.jQuery(document).ready(function() { | ||
jet.jQuery(function($){ | ||
function updateLinks() { | ||
var $this = $(this); | ||
var siblings = $this.nextAll('.change-related, .delete-related'); | ||
if (!siblings.length) return; | ||
var value = $this.val(); | ||
if (value) { | ||
siblings.each(function(){ | ||
var elm = $(this); | ||
elm.attr('href', elm.attr('data-href-template').replace('__fk__', value)); | ||
}); | ||
} else siblings.removeAttr('href'); | ||
} | ||
var container = $(document); | ||
container.on('change', '.related-widget-wrapper select', updateLinks); | ||
container.find('.related-widget-wrapper select').each(updateLinks); | ||
container.on('click', '.related-widget-wrapper-link', function(event){ | ||
if (this.href) { | ||
showRelatedObjectPopup(this); | ||
} | ||
event.preventDefault(); | ||
}); | ||
}); | ||
}); | ||
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 @@ | ||
|
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
Oops, something went wrong.