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
def testAfterAddMessageContainsChangeLink(self): | |
""" | |
Tests if the message after saving an object contains link to object. | |
""" | |
post_data = { | |
"name": "Another Section", | |
# inline data | |
"article_set-TOTAL_FORMS": "3", | |
"article_set-INITIAL_FORMS": "0", |
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
from django import forms | |
image = object # pseudo voor de goede syntax hilighting | |
class Images(object): | |
''' Dit wordt het magische images object, dat de form afspeurt naar de form | |
fields die van het type ImageField (of andere naam) zijn. ''' | |
pass | |
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
/* | |
* Roel Kramer - [email protected] | |
*/ | |
(function($) { | |
$.fn.append_target_template = function(options) { | |
var settings = { | |
'url' : '/default.tpl.html', | |
'template_id' : 'template' | |
}; | |