HELP on unittest.loader.ModuleImportFailure

2014-06-07 Thread Kim
Hi,

I started learning Django and am using "Test Driven Web Development with 
Python" book. 

On page 21, the book mentions to test using lists/tests.py.
The book uses the code:
$ python3 manage.py test
to run the test. 

However, the manage.py file sits in the upper superlists folder and the 
tests.py sits in lists folder. 
I keep getting an error message saying "ImportError: No module named 
lists.tests”. 

Could someone help me figure this out? 

My Django project directory looks like below. 

superlists
  db.sqlite3
  functional_test.py
  manage.py
  lists
__init__.py
admin.py
models.py
tests.py
views.py
  superlists
__init__.py
settings.py
urls.py 
wsgi.py
__init__.py

The error message is below:

$ python manage.py test
Creating test database for alias 'default'...
E
==
ERROR: superlists.lists.tests (unittest.loader.ModuleImportFailure)
--
ImportError: Failed to import test module: superlists.lists.tests
Traceback (most recent call last):
  File 
"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/loader.py",
 
line 254, in _find_tests
module = self._get_module_from_name(name)
  File 
"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/loader.py",
 
line 232, in _get_module_from_name
__import__(name)
ImportError: No module named lists.tests


--
Ran 1 test in 0.000s

FAILED (errors=1)
Destroying test database for alias 'default'...

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1de8f6df-9876-42fa-a89f-153a320328e4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Anyone interested in reviewing code for a hobby project - BookMarker

2014-06-07 Thread Aseem Bansal
I last asked for a review around two weeks back for my project. Is anyone 
interested to give a second review for this project? 

https://github.com/anshbansal/Bookmarker

The last thread was 
here https://groups.google.com/forum/#!topic/django-users/ob4fXz3GF9w in 
case someone wants to see that I actually respond to people's comments 
instead of just wasting their time.

>From last time I have done these changes -
1 Bookmark update as per categories  is now working
2 Used templates to make some things simpler to understand
3 Refactoring of view.py to get reusable components
4 Refactored jquery to make it cleaner so it is actually possible to read it
5 Added CDN of librarires and added backup in case no internet is present


My main concern currently is that this project is turning out to have a lot 
more jQuery than Python/HTML.  Am I designing this incorrectly? I 
understand that as my requirements are mostly asynchronous so there is a 
need for javascript but redundancy like hard-coding URLs for autocomplete 
in javascript is bothering me. Also am I over-engineering the Javascript?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7e9454ae-80b1-4a6b-a63f-81d997f15704%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Model._meta.get_all_related_objects() returns [] in Django 1.7b4

2014-06-07 Thread Lucas Sampaio
Hello everyone,

I'm new in this group, I'm a brazilian web developer trying to set up a new 
project using Django 1.7b4 (I couldn't wait to test the new migrations app).

Problem is: I need to write a Serializer, like Django-REST-Framework 
does[1], but there's a problem: I don't know why, but 
Model._meta.get_all_related_objects() always returns [ ]. The same code 
running with Django 1.6 works as expected. Also, the models I'm using for 
tests are defined on "libs.tests.examples.models". I don't know if it might 
be a problem.

Is there anything I can do to make it work or is it really a bug with 1.7?

[]s,
Lucas S.

[1]: 
https://github.com/tomchristie/django-rest-framework/blob/master/rest_framework/serializers.py#L734

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/813a4ab4-215f-44cc-aec1-fa58919e8623%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Question about moving code to product from local or development server.

2014-06-07 Thread Chen Xu
I am building a django website, and wondering what is an easy way to move
all of my code to production, is there a tool for doing that, or maybe
write my own script?


Thanks

-- 
⚡ Chen Xu ⚡

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACac-qY8nbj6uiPyvkorvARAqZ%2Bej7rAty_CtdkHnz5bXBKBKQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Model._meta.get_all_related_objects() returns [] in Django 1.7b4

2014-06-07 Thread Babatunde Akinyanmi
Hi Lucas. The development version of django is unstable so if you choose to
use it, you should not be surprised if strange things like what you have
described happen. Also, _meta is a private part of the code base that can
change anytime.
On 7 Jun 2014 21:18, "Lucas Sampaio"  wrote:

> Hello everyone,
>
> I'm new in this group, I'm a brazilian web developer trying to set up a
> new project using Django 1.7b4 (I couldn't wait to test the new migrations
> app).
>
> Problem is: I need to write a Serializer, like Django-REST-Framework
> does[1], but there's a problem: I don't know why, but
> Model._meta.get_all_related_objects() always returns [ ]. The same code
> running with Django 1.6 works as expected. Also, the models I'm using for
> tests are defined on "libs.tests.examples.models". I don't know if it might
> be a problem.
>
> Is there anything I can do to make it work or is it really a bug with 1.7?
>
> []s,
> Lucas S.
>
> [1]:
> https://github.com/tomchristie/django-rest-framework/blob/master/rest_framework/serializers.py#L734
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/813a4ab4-215f-44cc-aec1-fa58919e8623%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BWjgXPgPk1V6xB%2BaPw6eGyhhZHgw9_0sFB52frMT4DfCugAPw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Question about moving code to product from local or development server.

2014-06-07 Thread Adam Stein
I use Fabric (http://www.fabfile.org/), which bills itself as a Python
library and command line tool for streamlining the use of SSH for
application deployment or systems administration tasks.  No need to
invent your own.

On Sat, 2014-06-07 at 16:50 -0400, Chen Xu wrote:
> I am building a django website, and wondering what is an easy way to
> move all of my code to production, is there a tool for doing that, or
> maybe write my own script?
> 
> 
> 
> 
> 
> Thanks
> 
> 
> 
> -- 
> ⚡ Chen Xu ⚡
> 
> -- 
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACac-qY8nbj6uiPyvkorvARAqZ%2Bej7rAty_CtdkHnz5bXBKBKQ%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.


-- 
Adam (a...@csh.rit.edu)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1402185868.15179.61.camel%40zookeeper.steinhome.net.
For more options, visit https://groups.google.com/d/optout.


Re: The Django 1.7 tees!

2014-06-07 Thread Sithembewena Lloyd Dube
Hi Russell,

Thanks for the feedback. I still do not see anything processed on the card
- am getting a bit worried here. Is there some way I could find out what
happened to my order?

Kind regards,
Lloyd


On Tue, Jun 3, 2014 at 1:56 AM, Russell Keith-Magee  wrote:

> Hi Lloyd,
>
> The card won't be debited until the campaign completes, which was over the
> weekend; I'm guessing that means the bank wouldn't have processed anything
> until Monday, and as with all bank things, it might take a day or two to
> show up in statements.
>
> The actual shirts should have gone into production on Monday as well, and
> generally ship within 2 weeks. US deliveries take 7-14 days from end of
> campaign; international take 14-21 days.
>
> Yours,
> Russ Magee %-)
>
>
> On Mon, Jun 2, 2014 at 8:13 PM, Sithembewena Lloyd Dube  > wrote:
>
>> Hey Russell,
>>
>> I placed an order for a small tee, but I see my card has not been debited
>> in my bank statement? When do they get charged/ shipped?
>>
>> Thanks,
>> Lloyd
>>
>>
>> On Wed, May 21, 2014 at 2:17 PM, Sithembewena Lloyd Dube <
>> zebr...@gmail.com> wrote:
>>
>>> Hi Russell,
>>>
>>> Thank you! I really appreciate you bringing the campaign back :)
>>>
>>> Kind regards,
>>> Sithu
>>>
>>>
>>> On Wed, May 21, 2014 at 1:35 PM, Russell Keith-Magee <
>>> russ...@keith-magee.com> wrote:
>>>
 Hi Sithu,

 Good news! It turns out you weren't the only person to have problems
 placing an order, so we've re-opened the campaign for one last run to make
 sure everyone who wants a shirt can get one. You can place your order here:

 http://teespring.com/django17-v2

 You have until the end of May.

 Yours,
 Russ Magee %-)



 On Thu, May 1, 2014 at 7:03 PM, Sithembewena Lloyd Dube <
 zebr...@gmail.com> wrote:

> Hi Russell,
>
> Thank you for the feedback. I'm hoping that others may show interest
> so that the campaign could be re-opened. I will be watching this closely 
> :)
>
> Kind regards,
> Sithu
>
>
> On Thu, May 1, 2014 at 2:39 AM, Russell Keith-Magee <
> russ...@keith-magee.com> wrote:
>
>> Hi Sithu,
>>
>> Unfortunately, we can't add orders once the campaign is closed - this
>> is one of the features of TeeSpring as a fund raising method.
>>
>> We *can* relaunch the campaign, but that campaign would be
>> independent to the original. It would have its own sales target, its own
>> closing date, and so on.
>>
>> The lowest we can set the sales target is 20 shirts. I know there are
>> about 6 other orders out there from people who missed the deadline; if
>> there's any other interest out there (speak up in a reply if you're
>> interested), we might consider reopening the campaign for a week.
>>
>> Yours,
>> Russ Magee %-)
>>
>>
>> On Wed, Apr 30, 2014 at 11:58 PM, Sithembewena Lloyd Dube <
>> zebr...@gmail.com> wrote:
>>
>>> To Whom It May Concern,
>>>
>>> I am devastated that I could not place an order for one of the new
>>> Django 1.7 tees. Now that I am ready to go, the campaign has ended on 
>>> the
>>> merchant website.
>>>
>>> May I please place an order for one? I'd dearly like a memento of
>>> this milestone release. Pretty please? Size=small :)
>>>
>>> --
>>> Regards,
>>> Sithu Lloyd Dube
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAH-SnCB%2BVP%2BVpM3g4Uj4qP5sWfMv4%3DFvcuiNFvbYAErJknTnmw%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>  --
>> You received this message because you are subscribed to the Google
>> Groups "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJxq84-mq6pnpX3WaSGrfBccE-hT1e7MY3xWRp_O62pkUpZGxw%40mail.gmail.com
>> 

Re: Model._meta.get_all_related_objects() returns [] in Django 1.7b4

2014-06-07 Thread Russell Keith-Magee
While it is true that _meta is technically unsupported API, it is
sufficiently "core" that it wouldn't be changed lightly.  I'm not aware of
any changes to _meta semantics that have been introduced in 1.7 -
especially not in the  basic reflection structure of relations.

I'm would also be deeply surprised if the bug is as simple as described (ie
all calls to get_all_related_objects return []). That API is used
internally, so if it were misfiring consistently, I would have expected
that to be picked up by Django's own test suite.

So, Lucas - it sounds like there is something odd going on here, and it's
probably related to something specific to your project. Are you able to
reduce the behavior you are seeing to a simple reproducible test case? ie the
minimal project that demonstrates the problem?

Yours,
Russ Magee %-)

On Sunday, June 8, 2014, Babatunde Akinyanmi  wrote:

> Hi Lucas. The development version of django is unstable so if you choose
> to use it, you should not be surprised if strange things like what you have
> described happen. Also, _meta is a private part of the code base that can
> change anytime.
> On 7 Jun 2014 21:18, "Lucas Sampaio"  > wrote:
>
>> Hello everyone,
>>
>> I'm new in this group, I'm a brazilian web developer trying to set up a
>> new project using Django 1.7b4 (I couldn't wait to test the new migrations
>> app).
>>
>> Problem is: I need to write a Serializer, like Django-REST-Framework
>> does[1], but there's a problem: I don't know why, but
>> Model._meta.get_all_related_objects() always returns [ ]. The same code
>> running with Django 1.6 works as expected. Also, the models I'm using for
>> tests are defined on "libs.tests.examples.models". I don't know if it might
>> be a problem.
>>
>> Is there anything I can do to make it work or is it really a bug with 1.7?
>>
>> []s,
>> Lucas S.
>>
>> [1]:
>> https://github.com/tomchristie/django-rest-framework/blob/master/rest_framework/serializers.py#L734
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com
>> 
>> .
>> To post to this group, send email to django-users@googlegroups.com
>> .
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/813a4ab4-215f-44cc-aec1-fa58919e8623%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com
> 
> .
> To post to this group, send email to django-users@googlegroups.com
> .
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BWjgXPgPk1V6xB%2BaPw6eGyhhZHgw9_0sFB52frMT4DfCugAPw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJxq84_uk%3DotK_X%3DBWTsXeg95NLVSJcX5Mq%3Dd_7M%2BWA0fYZj0A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: The Django 1.7 tees!

2014-06-07 Thread Russell Keith-Magee
Hi Lloyd;

The emails you've received from Teespring give all the details, including a
link that should let you track progress of your order. I don't have access
to any info beyond that.

However, personally, I wouldn't take absence of a bank record to be
evidence of anything. Interbank currency arbitrage is a mess :-)

Yours,
Russ Magee %-)

On Sunday, June 8, 2014, Sithembewena Lloyd Dube  wrote:

> Hi Russell,
>
> Thanks for the feedback. I still do not see anything processed on the card
> - am getting a bit worried here. Is there some way I could find out what
> happened to my order?
>
> Kind regards,
> Lloyd
>
>
> On Tue, Jun 3, 2014 at 1:56 AM, Russell Keith-Magee <
> russ...@keith-magee.com
> > wrote:
>
>> Hi Lloyd,
>>
>> The card won't be debited until the campaign completes, which was over
>> the weekend; I'm guessing that means the bank wouldn't have processed
>> anything until Monday, and as with all bank things, it might take a day or
>> two to show up in statements.
>>
>> The actual shirts should have gone into production on Monday as well, and
>> generally ship within 2 weeks. US deliveries take 7-14 days from end of
>> campaign; international take 14-21 days.
>>
>> Yours,
>> Russ Magee %-)
>>
>>
>> On Mon, Jun 2, 2014 at 8:13 PM, Sithembewena Lloyd Dube <
>> zebr...@gmail.com> wrote:
>>
>> Hey Russell,
>>
>> I placed an order for a small tee, but I see my card has not been debited
>> in my bank statement? When do they get charged/ shipped?
>>
>> Thanks,
>> Lloyd
>>
>>
>> On Wed, May 21, 2014 at 2:17 PM, Sithembewena Lloyd Dube <
>> zebr...@gmail.com> wrote:
>>
>> Hi Russell,
>>
>> Thank you! I really appreciate you bringing the campaign back :)
>>
>> Kind regards,
>> Sithu
>>
>>
>> On Wed, May 21, 2014 at 1:35 PM, Russell Keith-Magee <
>> russ...@keith-magee.com> wrote:
>>
>> Hi Sithu,
>>
>> Good news! It turns out you weren't the only person to have problems
>> placing an order, so we've re-opened the campaign for one last run to make
>> sure everyone who wants a shirt can get one. You can place your order here:
>>
>> http://teespring.com/django17-v2
>>
>> You have until the end of May.
>>
>> Yours,
>> Russ Magee %-)
>>
>>
>>
>> On Thu, May 1, 2014 at 7:03 PM, Sithembewena Lloyd Dube <
>> zebr...@gmail.com> wrote:
>>
>> Hi Russell,
>>
>> Thank you for the feedback. I'm hoping that others may show interest so
>> that the campaign could be re-opened. I will be watching this closely :)
>>
>> Kind regards,
>> Sithu
>>
>>
>> On Thu, May 1, 2014 at 2:39 AM, Russell Keith-Magee <
>> russ...@keith-magee.com> wrote:
>>
>> Hi Sithu,
>>
>> Unfortunately, we can't add orders once the campaign is closed - this is
>> one of the features of TeeSpring as a fund raising method.
>>
>> We *can* relaunch the campaign, but that campaign would be independent to
>> the original. It would have its own sales target, its own closing date, and
>> so on.
>>
>> The lowest we can set the sales target is 20 shirts. I know there are
>> about 6 other orders out there from people who missed the deadline; if
>> there's any other interest out there (speak up in a reply if you're
>> interested), we might consider reopening the campaign for a week.
>>
>> Yours,
>> Russ Magee %-)
>>
>>
>> On Wed, Apr 30, 2014 at 11:58 PM, Sithembewena Lloyd Dube <
>> zebr...@gmail.com> wrote:
>>
>> To Whom It May Concern,
>>
>> I am devastated that I could not place an order for one of the new Django
>> 1.7 tees. Now that I am ready to go, the campaign has ended on t
>>
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAJxq849pmMdQN1zE6U61xyqj%3Dh4E6ZAdR5FczoXkcM4_P%2B%2BL4Q%40mail.gmail.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> Regards,
> Sithu Lloyd Dube
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com
> 
> .
> To post to this group, send email to django-users@googlegroups.com
> .
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAH-SnCB-oRUkHbjv6Lo_zvAgFAbn%2B8LXX0wngh350PK1nBH0zg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegr

Re: The Django 1.7 tees!

2014-06-07 Thread Sithembewena Lloyd Dube
Hi Russell,

Emails from Teespring? I cannot seem to find any - not even in my trash??
:( You are right though, the currency arbitrage at most banks is shocking -
and the fees are not insignificant.

I am not sure what went on here and I am really jittery because I badly
want a 1.7 tee. This is a milestone release and I want to keep  a memento.
I actually wanted to go back and buy a second, which is when I realised I
knew nothing of the first transaction. If nothign happens i will just ask
the mailing list if anyone has a small tee they want to let go off.

Again, thanks for your help (and patience).

Kind regards,
Lloyd


On Sun, Jun 8, 2014 at 2:32 AM, Russell Keith-Magee  wrote:

> Hi Lloyd;
>
> The emails you've received from Teespring give all the details, including
> a link that should let you track progress of your order. I don't have
> access to any info beyond that.
>
> However, personally, I wouldn't take absence of a bank record to be
> evidence of anything. Interbank currency arbitrage is a mess :-)
>
> Yours,
> Russ Magee %-)
>
>
> On Sunday, June 8, 2014, Sithembewena Lloyd Dube 
> wrote:
>
>> Hi Russell,
>>
>> Thanks for the feedback. I still do not see anything processed on the
>> card - am getting a bit worried here. Is there some way I could find out
>> what happened to my order?
>>
>> Kind regards,
>> Lloyd
>>
>>
>> On Tue, Jun 3, 2014 at 1:56 AM, Russell Keith-Magee <
>> russ...@keith-magee.com> wrote:
>>
>>> Hi Lloyd,
>>>
>>> The card won't be debited until the campaign completes, which was over
>>> the weekend; I'm guessing that means the bank wouldn't have processed
>>> anything until Monday, and as with all bank things, it might take a day or
>>> two to show up in statements.
>>>
>>> The actual shirts should have gone into production on Monday as well,
>>> and generally ship within 2 weeks. US deliveries take 7-14 days from end of
>>> campaign; international take 14-21 days.
>>>
>>> Yours,
>>> Russ Magee %-)
>>>
>>>
>>> On Mon, Jun 2, 2014 at 8:13 PM, Sithembewena Lloyd Dube <
>>> zebr...@gmail.com> wrote:
>>>
>>> Hey Russell,
>>>
>>> I placed an order for a small tee, but I see my card has not been
>>> debited in my bank statement? When do they get charged/ shipped?
>>>
>>> Thanks,
>>> Lloyd
>>>
>>>
>>> On Wed, May 21, 2014 at 2:17 PM, Sithembewena Lloyd Dube <
>>> zebr...@gmail.com> wrote:
>>>
>>> Hi Russell,
>>>
>>> Thank you! I really appreciate you bringing the campaign back :)
>>>
>>> Kind regards,
>>> Sithu
>>>
>>>
>>> On Wed, May 21, 2014 at 1:35 PM, Russell Keith-Magee <
>>> russ...@keith-magee.com> wrote:
>>>
>>> Hi Sithu,
>>>
>>> Good news! It turns out you weren't the only person to have problems
>>> placing an order, so we've re-opened the campaign for one last run to make
>>> sure everyone who wants a shirt can get one. You can place your order here:
>>>
>>> http://teespring.com/django17-v2
>>>
>>> You have until the end of May.
>>>
>>> Yours,
>>> Russ Magee %-)
>>>
>>>
>>>
>>> On Thu, May 1, 2014 at 7:03 PM, Sithembewena Lloyd Dube <
>>> zebr...@gmail.com> wrote:
>>>
>>> Hi Russell,
>>>
>>> Thank you for the feedback. I'm hoping that others may show interest so
>>> that the campaign could be re-opened. I will be watching this closely :)
>>>
>>> Kind regards,
>>> Sithu
>>>
>>>
>>> On Thu, May 1, 2014 at 2:39 AM, Russell Keith-Magee <
>>> russ...@keith-magee.com> wrote:
>>>
>>> Hi Sithu,
>>>
>>> Unfortunately, we can't add orders once the campaign is closed - this is
>>> one of the features of TeeSpring as a fund raising method.
>>>
>>> We *can* relaunch the campaign, but that campaign would be independent
>>> to the original. It would have its own sales target, its own closing date,
>>> and so on.
>>>
>>> The lowest we can set the sales target is 20 shirts. I know there are
>>> about 6 other orders out there from people who missed the deadline; if
>>> there's any other interest out there (speak up in a reply if you're
>>> interested), we might consider reopening the campaign for a week.
>>>
>>> Yours,
>>> Russ Magee %-)
>>>
>>>
>>> On Wed, Apr 30, 2014 at 11:58 PM, Sithembewena Lloyd Dube <
>>> zebr...@gmail.com> wrote:
>>>
>>> To Whom It May Concern,
>>>
>>> I am devastated that I could not place an order for one of the new
>>> Django 1.7 tees. Now that I am ready to go, the campaign has ended on t
>>>
>>>  To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAJxq849pmMdQN1zE6U61xyqj%3Dh4E6ZAdR5FczoXkcM4_P%2B%2BL4Q%40mail.gmail.com
>>> 
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> Regards,
>> Sithu Lloyd Dube
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsub