Re: ajax POST request being sent as GET

2015-12-15 Thread Simon Charette
Hi Larry,

It's more of a JavaScript question but my first guess would be
you'd need to use the `type` option instead of `method` because
you are using an old version of jQuery?

Simon

Le mardi 15 décembre 2015 17:25:12 UTC-5, larry@gmail.com a écrit :
>
> I am sending an ajax POST request like this: 
>
> $.ajax({ 
> url: url, 
> method: 'POST', 
> dataType: "json", 
> data: { 
> recipe: recpie 
> } 
> }) 
>
> But the request is being sent as a GET: 
>
> Request URL: http://127.0.0.1/api/update_measbox?recipe=MALBHDPOR 
> Request Method: GET 
> Status Code:200 OK 
> Remote Address:127.0.0.1:80 
>
> Any ideas as to why this is happening and how I can get it sent it as a 
> POST? 
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ccb98d49-5024-45e6-8b75-b225c50b135e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ajax POST request being sent as GET

2015-12-15 Thread Neto


$.post( "ajax/test.html", function( data ) {
 $( ".result" ).html( data );
});


Em terça-feira, 15 de dezembro de 2015 20:25:12 UTC-2, larry@gmail.com 
escreveu:
>
> I am sending an ajax POST request like this: 
>
> $.ajax({ 
> url: url, 
> method: 'POST', 
> dataType: "json", 
> data: { 
> recipe: recpie 
> } 
> }) 
>
> But the request is being sent as a GET: 
>
> Request URL: http://127.0.0.1/api/update_measbox?recipe=MALBHDPOR 
> Request Method: GET 
> Status Code:200 OK 
> Remote Address:127.0.0.1:80 
>
> Any ideas as to why this is happening and how I can get it sent it as a 
> POST? 
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/89407d5d-da38-4361-8d15-bf91f73743a6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gsoc 2016 contribution

2015-12-15 Thread Tim Graham
Hi Yash,

Learning our contributing process and having a solid track record of 
contributing patches will enhance your chances of writing a successful 
application. If you don't have any Django experience, start with our 
tutorial:
https://docs.djangoproject.com/en/dev/intro/tutorial01/

After you have some experience with Django, then look at our contributing 
tutorial:
https://docs.djangoproject.com/en/dev/intro/contributing/

Tim

On Tuesday, December 15, 2015 at 12:54:51 PM UTC-5, Yash Sharan wrote:
>
> hello my name is Yash Sharan and i'm a first year student at BITS Pilani 
> Goa campus,India. i know basic python.How can i enhance my current skills 
> so that i may be able to contribute towards your projects during Gsoc 2016.
> Thanks
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9c645f90-a655-451b-a62c-514ff6e6c541%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ajax POST request being sent as GET

2015-12-15 Thread Larry Martell
On Tue, Dec 15, 2015 at 5:45 PM, Daniel Chimeno  wrote:
> Hello,
>
> This is more  a jQuery issue than a Django one, but it could be because of
> the quotes.
>
> From: http://api.jquery.com/jquery.ajax/
>
> var menuId = $( "ul.nav" ).first().attr( "id" );
> var request = $.ajax({
>   url: "script.php",
>   method: "POST",
>   data: { id : menuId },
>   dataType: "html"
> });

No, the double quotes vs. single quotes do not matter. I think this is
somehow related to my django app, as when I send the same request from
a web page not part of my django app it does get sent as a POST.


>
> El martes, 15 de diciembre de 2015, 23:25:12 (UTC+1), larry@gmail.com
> escribió:
>>
>> I am sending an ajax POST request like this:
>>
>> $.ajax({
>> url: url,
>> method: 'POST',
>> dataType: "json",
>> data: {
>> recipe: recpie
>> }
>> })
>>
>> But the request is being sent as a GET:
>>
>> Request URL: http://127.0.0.1/api/update_measbox?recipe=MALBHDPOR
>> Request Method: GET
>> Status Code:200 OK
>> Remote Address:127.0.0.1:80
>>
>> Any ideas as to why this is happening and how I can get it sent it as a
>> POST?
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/004cad67-925f-41f9-b155-2b3c40d74673%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACwCsY5uzKn4rSVv-0_1_AhMD4rNYfKqjU3GwB6Rg%3DX_HwhpAQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: ajax POST request being sent as GET

2015-12-15 Thread Daniel Chimeno
Hello,

This is more  a jQuery issue than a Django one, but it could be because of 
the quotes.

From: http://api.jquery.com/jquery.ajax/

var menuId = $( "ul.nav" ).first().attr( "id" );
var request = $.ajax({
  url: "script.php",
  method: "POST",
  data: { id : menuId },
  dataType: "html"
});




 

El martes, 15 de diciembre de 2015, 23:25:12 (UTC+1), larry@gmail.com 
escribió:
>
> I am sending an ajax POST request like this: 
>
> $.ajax({ 
> url: url, 
> method: 'POST', 
> dataType: "json", 
> data: { 
> recipe: recpie 
> } 
> }) 
>
> But the request is being sent as a GET: 
>
> Request URL: http://127.0.0.1/api/update_measbox?recipe=MALBHDPOR 
> Request Method: GET 
> Status Code:200 OK 
> Remote Address:127.0.0.1:80 
>
> Any ideas as to why this is happening and how I can get it sent it as a 
> POST? 
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/004cad67-925f-41f9-b155-2b3c40d74673%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gsoc 2016 contribution

2015-12-15 Thread Daniel Chimeno
Improve your Python skills.
Improve/learn your Django skills.
Stay tuned in the community :)


El martes, 15 de diciembre de 2015, 18:54:51 (UTC+1), Yash Sharan escribió:
>
> hello my name is Yash Sharan and i'm a first year student at BITS Pilani 
> Goa campus,India. i know basic python.How can i enhance my current skills 
> so that i may be able to contribute towards your projects during Gsoc 2016.
> Thanks
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/109c18b2-6a3a-4e9a-a30e-ba2a34f4fa31%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Customizing Admin Layout and templates

2015-12-15 Thread Daniel Chimeno
Hello,
If you want to build a CMS, you could use some apps or projects that are 
out there:
https://www.djangopackages.com/grids/g/cms/

El martes, 15 de diciembre de 2015, 20:05:31 (UTC+1), Mayank Singhal 
escribió:
>
> Hello,
> I am new to django. I want to customize the admin panel templates and 
> layouts. How can i do that can somebody provide me the tutorial.
> I want to convert it in a panel like Wordpress or Joomla Admin Panel.
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/228facee-96a2-49d6-8b74-db36c24f6d83%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ajax POST request being sent as GET

2015-12-15 Thread Larry Martell
I am sending an ajax POST request like this:

$.ajax({
url: url,
method: 'POST',
dataType: "json",
data: {
recipe: recpie
}
})

But the request is being sent as a GET:

Request URL: http://127.0.0.1/api/update_measbox?recipe=MALBHDPOR
Request Method: GET
Status Code:200 OK
Remote Address:127.0.0.1:80

Any ideas as to why this is happening and how I can get it sent it as a POST?

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACwCsY6Ya1n2kVBSS56DtJhvFFyw3wOJy-ie3O6%2B_maAcnFukw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


"Error creating new content types" with multiple DB router

2015-12-15 Thread Carlton Gibson
Hi, 

Using multiple DBs, with most models in the "default" db but models for a 
single app being stored in a second DB, I've more or less copied the example 
from the docs 
 for 
a custom database router. (My example is essentially identical to the 
`AuthRouter` class given.)

This works perfectly *except* when I run the migration on the second DB. 

The app relations are all created but I then get an error creating the 
ContentType...

> RuntimeError: Error creating new content types. Please make sure 
contenttypes is migrated before trying to migrate apps individually.

This occurs because the relation "django_content_type" does not exist in 
the second database — that's correct: I'm expecting content types to be 
written only to the "default" db. 

My question is why is this error occurring? 

1. As per the docs, in my router, I am returning "None if there is no 
suggestion" for all the router methods — particularly `db_for_write`, which 
seems relevant here. 
2. Looking at the source, the default router returns `DEFAULT_DB_ALIAS` if 
all the custom routers return None. 

So 3. I can't see the error. :-) — I'm expecting the content type to be 
written to the default db. 

I can work around the issue here — but I'd like to understand it. Can 
anyone with experience of this explain what I've done wrong?

Kind Regards,

Carlton 


-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/013ef727-b914-4986-b037-f8fae258af86%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django decision for tour reservation database

2015-12-15 Thread Tyler Kelly
I was very new to python and its frameworks a couple months ago and ran 
into a similar roadblock. For my first site I used Django and it was very 
time consuming and understanding the file structure took me a long time 
(mostly due to the fact that I was very impatient at the time due to time 
constraints). Anyway, I made another website a few weeks later and decided 
to use the Flask framework and it was better suited for my small site.

If I could do it again I would have used Flask for both(although I did 
learn a lot about Django which is a good skill to have) mainly because they 
are smaller sites. Django(as I understand from input from multiple 
professors) is best suited for larger sites and it sounds to me like a 
lighter frame work such as flask would better suit you. Again both of my 
sites were/are fairly small(one 8 page site that does some data querying 
with a postgresql db(Django), and the other about 15 pages that did logins 
and data manipulation and file uploads(Flask)) and I don't plan on 
expanding on those in a great way anytime soon.

Let me know if you have any questions.

On Sunday, December 13, 2015 at 9:34:05 AM UTC-5, Tourmaster wrote:
>
> I'm a tour operator scheduling 3 trips a day. Currently I manage my 
> bookings by phone using MS Access and have a reservation service linked to 
> my wordpress site who sends me reports by email. 
>
> I want to put a single database on a server available to the office, 
> outside agents and customers who will reserve a seat, select upgrades, 
> agree to price and deposits and receive an email confirmation.
>
> I've done Python programing before and just installed Django and SQLite on 
> Yosemite for development of a simple stand alone web app duplicating the 
> Access functions then linking to the website after migrating to MySql then 
> dropping my online reservation service 
>
> I'm looking for packages now if anyone can recommend a calendar based 
> scheduler but I'm also reconsidering if Django is the the best framework 
> since I'm not looking at complete site and may not need a full stack. 
>
> Is this a job for a lighter framework?  Also, I may want to go mobile in 
> the future. 
>
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0d87d58b-d8fb-4c0f-87bd-557afebb7331%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Radio button

2015-12-15 Thread piasek piasek
I would like prepare django form for several entries for one model.
Let's assume I have model Photo where I upload and save image.
>From model I will takie 10 entries and for each of image I would like 
generate forms to set title, description, check if photo is active.
That part I have it and is working fine, but I have problem to set to this 
forms radiobutton. From all of this entries I would like choose 
one which will be a covered photo. Normally we can use choices and 
eveyrthing is ok, but how I can seperate them and attach to each photo?
Do you have any suggestions?

Thanks

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6770cb21-27e2-41b3-9a85-cbebf5ad2946%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Customizing Admin Layout and templates

2015-12-15 Thread Mayank Singhal
Hello,
I am new to django. I want to customize the admin panel templates and 
layouts. How can i do that can somebody provide me the tutorial.
I want to convert it in a panel like Wordpress or Joomla Admin Panel.

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/bae207d6-0e23-4dcc-95ec-e3719cd46f10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: update Django

2015-12-15 Thread Andreas Kuhne
Hi,

As previously stated. Give us some more details and we can probably help
you. I have done upgrades from 1.3 to 1.8 and 1.5 to 1.8 in different
projects, we can probably help if we get some more information :-)

Regards,

Andréas

2015-12-15 16:55 GMT+01:00 Ovnicraft :

>
>
> On Tue, Dec 15, 2015 at 5:57 AM, Hugo Cosme  wrote:
>
>> Good morning to all, someone here has already done the update of some
>> version of django, as of 1.5 to 1.8 for example? I'm having some
>> difficulties!
>>
>
> Hi Hugo, please gives us more details about your problem, which steps do
> you follow and outputs.
>
>
>
>> --
>> 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 https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/6c116a52-4224-4857-aeee-f7143422ea98%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
>
> [image: Cristian Salamea on about.me]
>
> Cristian Salamea
> about.me/ovnicraft
>   
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2B16coNcfoefShcFCT5iF1ddSyinc2_NAtnqFXJiPFY8YLiu%3DQ%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALXYUbnJDr-5d_Spfn9TNciT%3DJ4LD_HkNJhD1_B65%3D05N%3D__Tg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Gsoc 2016 contribution

2015-12-15 Thread Yash Sharan
hello my name is Yash Sharan and i'm a first year student at BITS Pilani 
Goa campus,India. i know basic python.How can i enhance my current skills 
so that i may be able to contribute towards your projects during Gsoc 2016.
Thanks

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/486608f6-17d2-43de-ab36-605c46fdd6f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: update Django

2015-12-15 Thread Ovnicraft
On Tue, Dec 15, 2015 at 5:57 AM, Hugo Cosme  wrote:

> Good morning to all, someone here has already done the update of some
> version of django, as of 1.5 to 1.8 for example? I'm having some
> difficulties!
>

Hi Hugo, please gives us more details about your problem, which steps do
you follow and outputs.



> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/6c116a52-4224-4857-aeee-f7143422ea98%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 

[image: Cristian Salamea on about.me]

Cristian Salamea
about.me/ovnicraft
  

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2B16coNcfoefShcFCT5iF1ddSyinc2_NAtnqFXJiPFY8YLiu%3DQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: update Django

2015-12-15 Thread François Schiettecatte
Such as…?

François

> On Dec 15, 2015, at 5:57 AM, Hugo Cosme  wrote:
> 
> Good morning to all, someone here has already done the update of some version 
> of django, as of 1.5 to 1.8 for example? I'm having some difficulties!
> 
> -- 
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/6c116a52-4224-4857-aeee-f7143422ea98%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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/349B1DB9-F01C-4ACC-994C-B4D097B43E17%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


update Django

2015-12-15 Thread Hugo Cosme
Good morning to all, someone here has already done the update of some 
version of django, as of 1.5 to 1.8 for example? I'm having some 
difficulties!

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/6c116a52-4224-4857-aeee-f7143422ea98%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django decision for tour reservation database

2015-12-15 Thread graeme
If in doubt use the full stack framework - you do not have to use features 
you do not want. On the other hand if you use a micro-framework and later 
decide you need the features of the full stack framework  you have to port 
your code.

I suggest using PostgreSQL instead of MySQL - it handles things like 
migrations better.

On Sunday, December 13, 2015 at 8:04:05 PM UTC+5:30, Tourmaster wrote:
>
> I'm a tour operator scheduling 3 trips a day. Currently I manage my 
> bookings by phone using MS Access and have a reservation service linked to 
> my wordpress site who sends me reports by email. 
>
> I want to put a single database on a server available to the office, 
> outside agents and customers who will reserve a seat, select upgrades, 
> agree to price and deposits and receive an email confirmation.
>
> I've done Python programing before and just installed Django and SQLite on 
> Yosemite for development of a simple stand alone web app duplicating the 
> Access functions then linking to the website after migrating to MySql then 
> dropping my online reservation service 
>
> I'm looking for packages now if anyone can recommend a calendar based 
> scheduler but I'm also reconsidering if Django is the the best framework 
> since I'm not looking at complete site and may not need a full stack. 
>
> Is this a job for a lighter framework?  Also, I may want to go mobile in 
> the future. 
>
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3749d069-4345-412a-8c35-476b0231c8b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.