Re: Beginner: How to find fields that can be over-ridden in a Generic Class Based Views

2023-04-11 Thread PULKIT AGRAWAL
Thanks Chetan for your response On Tuesday, 11 April 2023 at 19:18:11 UTC+5:30 Chetan Ganji wrote: > Hello Pulkit, > Information you are asking is not readily available. It will become clear > to you as you start writing code. > > However, you can use below options to make your life easier. >

Re: Beginner: How to find fields that can be over-ridden in a Generic Class Based Views

2023-04-11 Thread Sebastian Jung
Hello Plkt i have no idea what you mean and what is the aim sorry PULKIT AGRAWAL schrieb am Di., 11. Apr. 2023, 14:44: > Hello Everyone, > > I am very new to Django and am still learning the ropes. If anyone can > point me in the right direction, I will be thankful to you. > > My problems is as

Re: Beginner: How to find fields that can be over-ridden in a Generic Class Based Views

2023-04-11 Thread Chetan Ganji
Hello Pulkit, Information you are asking is not readily available. It will become clear to you as you start writing code. However, you can use below options to make your life easier. 1. https://ccbv.co.uk 2. dir and callable methods can help you get more clarity. I hope it helps you.

Re: Beginner at Django

2023-01-27 Thread JACKSON IMMANUEL S
https://youtu.be/SIyxjRJ8VNY i am watching videos from telusko where he elaborates step by step and for extra u can search w3schools and geekforgeeks On Sunday, January 15, 2023 at 5:28:25 AM UTC+5:30 808 wrote: > Hello, > > I'm part of a fast paced, non lectured program. Which means, me and my

Re: beginner

2022-06-03 Thread Mukul Verma
Check Out Django Docs No Worries it will take time but that's so simple On Thursday, 2 June 2022 at 23:01:29 UTC+5:30 bod...@gmail.com wrote: > Greetings > > please i am a beginner on django, i need material like video and soft copy > reading materials > > thanks > -- You received this

Re: Beginner question

2020-04-23 Thread Chucky Mada Madamombe
Hello, You need to create views and urls and a templates. Read more on the Django documentation. Regards Chuck G. Madamombe NAM: +264 81 842 1284 RSA: +27 78 208 7034 Twitter: @chuckygari Skype: chuckygari Facebook: Chucky Mada Madamombe LinkedIn: Chucknorris Garikayi Madamombe On Thu, 23 Apr

Re: Beginner question

2020-04-23 Thread Anonymous Patel
https://www.youtube.com/channel/UCxxPBCkto7W8MX6TMctgLqw This group of Developers on YouTube provide with solutions to all programming errors you can always ask them for the solutions. Follow there telegram channel @errormania Raj Patel On Thu, 23 Apr, 2020, 8:15 pm dradam lomas, wrote: >

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-07 Thread Deborah Emeni
Hello Philip, I use the same tutorial book "Django for beginners" as you and I understand why the author of the book refers to the pages directory as if there is only one. You are having two Directories because you ran this command: $ django-admin startproject pages The Author of the book ran

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-07 Thread Vikash Chitransh
I can help you in complete the book and create sample django application through skype. With Regards, Vikash Kumar On Fri, Mar 6, 2020 at 9:01 AM Philip Means wrote: > Thank you for your response. The book is Django for Beginners, by William > S. Vincent. I will copy and send you the chapter

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-06 Thread Ali Abubakar Muhd
May be you forgot to tell django where it looks for your template directory. To do this in your project directory go to setting and create a variable like this; TEMPLATE_DIR = os.path.join( BASE_DIR, 'templates') Then locate TEMPLATES in your setting and put TEMPLATE_DIR variable in DIRS, like

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-06 Thread Shishir Jha
"One thing that bothers me is that the author of the book refers to the pages directory as if there is only one. In fact, django created two. The top level, (Is that referred to as the base?) has manage.py in it. One of the childs of this is another ‘page’ which is where I put urls.py. At one

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-06 Thread Jorge Gimeno
I think Alvaro is on to something. I just noticed that there ins't a virtual enviroment active, and the traceback shows that pipenv run wasn't used either. Can we try pipenv shell and then running python manage.py runserver again? If you didn't install Django using pipenv install, do that first.

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-06 Thread Philip Means
Thank you all for your help and your interest. I am not sure how best to handle getting Information that you all have requested. Don’t want to clutter up the thread more than necessary, so I will send the information to all that have shown interest as .pdf attachments in emails. To Jorge

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-06 Thread SHANKAR JHA
Why don't you compare your code with the Github repo provided by the author: https://github.com/wsvincent/djangoforbeginners. You can share your code with us for more clarity. On Fri, Mar 6, 2020 at 9:31 AM Shishir Jha wrote: > Can you show the code that you have written until page 55? > > >

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-06 Thread Alvaro Orozco
It seems like you're not activating the virtual environment. Active the virtual environment and install the dependencies. On Thu, Mar 5, 2020 at 11:02 PM Shishir Jha wrote: > Can you show the code that you have written until page 55? > > > On Fri, 6 Mar 2020, 9:01 am Philip Means, wrote: > >>

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-06 Thread Byiringiro Yves
Hello guys, I need your help! How can I give a staff user a permission to create a user account in django? On Fri, 6 Mar 2020 at 06:01 Shishir Jha wrote: > Can you show the code that you have written until page 55? > > > On Fri, 6 Mar 2020, 9:01 am Philip Means, wrote: > >> Thank you for your

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-05 Thread Jorge Gimeno
On Thu, Mar 5, 2020 at 8:01 PM Shishir Jha wrote: > Can you show the code that you have written until page 55? > > > On Fri, 6 Mar 2020, 9:01 am Philip Means, wrote: > >> Thank you for your response. The book is Django for Beginners, by >> William S. Vincent. I will copy and send you the

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-05 Thread Shishir Jha
Can you show the code that you have written until page 55? On Fri, 6 Mar 2020, 9:01 am Philip Means, wrote: > Thank you for your response. The book is Django for Beginners, by William > S. Vincent. I will copy and send you the chapter I am having trouble > with. My directory structure, as

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-05 Thread Shishir Jha
Can you show the code that you have written upto page 55? -- 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 view

Re: Beginner needs help getting templates to work - is this the right group?

2020-03-05 Thread Jorge Gimeno
On Thu, Mar 5, 2020 at 6:04 PM Philip Means wrote: > I am new to web development. Wanted to help my daughter with a simple > website (she does pet portraits) and learn something that interests me. I > watched some you tube tutorials, then bought a book. First couple simple > projects went OK.

Re: Beginner

2019-02-02 Thread jake ksi
search github codingforentreponuers ecommerce Sent from Mailspring (https://link.getmailspring.com/link/1549102582.local-9ef6665c-d01d-v1.5.5-b7939...@getmailspring.com/0?redirect=https%3A%2F%2Fgetmailspring.com%2F=ZGphbmdvLXVzZXJzQGdvb2dsZWdyb3Vwcy5jb20%3D), the best free email app for work On

Re: beginner

2019-02-01 Thread Bob Gailer
I would be glad to give mentoring a shot. Send me your questions. If we enjoy working with each other then we'd need to negotiate some kind of payment for my services. Bob Gailer On Jan 31, 2019 4:36 PM, "Emmanuel klutse" wrote: > I want to be one of the best in the field (python n Django), so

Re: beginner

2019-01-31 Thread Emmanuel klutse
I want to be one of the best in the field (python n Django), so I will be happy if you can help as my mentor . I’m currently stack on dictionary for the best two day. On Thu, 31 Jan 2019 at 9:09 PM, Tim Vogt (Tim Vogt) wrote: > Wat do you want to accomplish? > > Tim > t...@officerebels.nl > >

Re: beginner

2019-01-31 Thread Tim Vogt (Tim Vogt)
Wat do you want to accomplish? Tim t...@officerebels.nl > Op 31 jan. 2019, om 21:51 heeft Emmanuel klutse het > volgende geschreven: > > I'm Emmnuel klutse, and very new to programming. > CAN I GET SOMEONE TO MENTOR ME PLEASE. > i'm currently taking a python course on udemy and also learning

Re: beginner guide

2018-10-13 Thread Daniel Bojorge (Foros)
I made this course, I hope be useful for you https://goo.gl/oeT5Sx It's in spanish. El lunes, 8 de octubre de 2018, 10:39:29 (UTC-6), Ashok Reddy escribió: > > hello every one .i am beginner to Django. Could you please suggest me the > best source to learn,i am very enthusiastic to learn. >

Re: beginner guide

2018-10-10 Thread Kasper Laudrup
Hi Pradeep, On 11/10/2018 16.08, Pradeep Singh wrote: i am getting django 404 error e..my first question why i am getting thsese error always ...please some one help me to fix it ..every thing in my code is my fine? . First of all, *don't* highjack unrelated threads when you

Re: beginner guide

2018-10-10 Thread whistler whitherfaith
Does anyone know where I can download Django 2 By Examples. On Wed, Oct 10, 2018, 01:58 Kim Sunga wrote: > If you're interested on the newest django (2.X) try to read Django 2 by > Example by Antonio Mele > > On Tue, Oct 9, 2018 at 7:37 PM 'puhlmann7' via Django users < >

Re: beginner guide

2018-10-10 Thread Pawel Grajewski
https://simpleisbetterthancomplex.com/ wt., 9 paź 2018 o 21:49 ashok kumar reddy napisał(a): > Thank you so much > > On Tue, 9 Oct 2018, 15:14 Devender Kumar, wrote: > >> Hi, >> Best way to learn django is to start coding it and keep referencing it >> with django docs. Or find a mentor

Re: beginner guide

2018-10-10 Thread TimT Vogt
I found https://wsvincent.com/ to be a good Guide Verstuurd vanaf mijn iPhone > Op 8 okt. 2018 om 18:49 heeft carl collins het > volgende geschreven: > > Follow this awesome tutorial> > https://docs.djangoproject.com/en/2.1/intro/tutorial01/ > >> On Mon, Oct 8, 2018 at 5:39 PM Ashok

Re: beginner guide

2018-10-09 Thread ashok kumar reddy
Thank you so much On Tue, 9 Oct 2018, 15:14 Devender Kumar, wrote: > Hi, > Best way to learn django is to start coding it and keep referencing it > with django docs. Or find a mentor work/help with him on some project and > keep learning he can guide you too. > > Find some code on GitHub and

Re: beginner guide

2018-10-09 Thread ashok kumar reddy
Thank you so much On Tue, 9 Oct 2018, 19:29 Kim Sunga, wrote: > If you're interested on the newest django (2.X) try to read Django 2 by > Example by Antonio Mele > > On Tue, Oct 9, 2018 at 7:37 PM 'puhlmann7' via Django users < > django-users@googlegroups.com> wrote: > >> Hi Ashok, >> >> You

Re: beginner guide

2018-10-09 Thread ashok kumar reddy
Thank you so much On Tue, 9 Oct 2018, 17:08 'puhlmann7' via Django users, < django-users@googlegroups.com> wrote: > Hi Ashok, > > You may have a look on this: https://tutorial.djangogirls.org/en/ > > Am Montag, 8. Oktober 2018 18:39:29 UTC+2 schrieb Ashok Reddy: >> >> hello every one .i am

Re: beginner guide

2018-10-09 Thread Kim Sunga
If you're interested on the newest django (2.X) try to read Django 2 by Example by Antonio Mele On Tue, Oct 9, 2018 at 7:37 PM 'puhlmann7' via Django users < django-users@googlegroups.com> wrote: > Hi Ashok, > > You may have a look on this: https://tutorial.djangogirls.org/en/ > > Am Montag, 8.

Re: beginner guide

2018-10-09 Thread 'puhlmann7' via Django users
Hi Ashok, You may have a look on this: https://tutorial.djangogirls.org/en/ Am Montag, 8. Oktober 2018 18:39:29 UTC+2 schrieb Ashok Reddy: > > hello every one .i am beginner to Django. Could you please suggest me the > best source to learn,i am very enthusiastic to learn. > -- You received

Re: beginner guide

2018-10-09 Thread Devender Kumar
Hi, Best way to learn django is to start coding it and keep referencing it with django docs. Or find a mentor work/help with him on some project and keep learning he can guide you too. Find some code on GitHub and read it once carefully. I am also looking for junior to help me with my work and

Re: beginner guide

2018-10-08 Thread carl collins
Follow this awesome tutorial> https://docs.djangoproject.com/en/2.1/intro/tutorial01/ On Mon, Oct 8, 2018 at 5:39 PM Ashok Reddy wrote: > hello every one .i am beginner to Django. Could you please suggest me the > best source to learn,i am very enthusiastic to learn. > > -- > You received this

Re: Beginner problem with sqlite3 db

2018-09-18 Thread Mateusz
Cześć! ;) You should first answer a question, why do you even bother using dbshell when there's an other option to deal with data? (docs ) If you know why I'm asking, simply installing sqlite3 is gonna be the best

Re: Re: Beginner

2018-07-15 Thread Harsh Rawat
Options regarding new names ? i didn't get it I am really sorry for disturbing you again and again *Harsh Rawat | +91-8824348448* *Marketing Associate, SPREE'18* *Department of Sponsorship & Marketing* *Birla Institute of Technology and Science, Pilani* *K.K. Birla Goa Campus* On Sat, Jul 14,

Re: Re: Beginner

2018-07-14 Thread bitbouncerr
Title: BitBounce Autoresponse      

Re: Beginner

2018-07-14 Thread 'Anthony Flury' via Django users
On 12/07/18 10:28, Harsh Rawat wrote: So basically I need to write the documentation regarding what should be the apt name for the feature and what packages come installed with django initially . I think the bug report suggests discussing possible options regarding new names and packages

Re: Beginner

2018-07-12 Thread Harsh Rawat
So basically I need to write the documentation regarding what should be the apt name for the feature and what packages come installed with django initially . On Thu, Jul 12, 2018, 11:41 AM Harsh Rawat wrote: > Thanks a lot . > > On Thu, Jul 12, 2018, 3:11 AM 'Anthony Flury' via Django users < >

Re: Beginner

2018-07-12 Thread Harsh Rawat
Thanks a lot . On Thu, Jul 12, 2018, 3:11 AM 'Anthony Flury' via Django users < django-users@googlegroups.com> wrote: > On 10/07/18 14:06, Harsh Rawat wrote: > > Identifying a useful name means ? > > > Let's say you have identified a great group of packages which you can > install and provides

Re: Beginner

2018-07-11 Thread 'Anthony Flury' via Django users
On 10/07/18 14:06, Harsh Rawat wrote: Identifying a useful name means ? Let's say you have identified a great group of packages which you can install and provides Django friendly Shopping cart. It would be better for that group of packages to be installed by :         pip install

Re: Beginner

2018-07-11 Thread 'Anthony Flury' via Django users
On 10/07/18 14:06, Harsh Rawat wrote: Identifying a useful name means ? Well - say you have a set of packages which is useful as a Django friendly shopping cart. Would it be better to type :             pip install Django[shopping-cart] or             pip install Django[frooble] Clearly

Re: Beginner

2018-07-10 Thread Harsh Rawat
Identifying a useful name means ? > > -- 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

Re: Beginner

2018-07-10 Thread Harsh Rawat
Thanks a lot On Thursday, 28 June 2018 12:04:26 UTC+5:30, TonyF-UK wrote: > > On 27/06/18 21:23, Harsh Rawat wrote: > > I have learnt Django a little bit. I need help regarding the ticket > > https://code.djangoproject.com/ticket/28905 .What should I learn in > > Django to be able to

Re: Beginner

2018-06-28 Thread 'Anthony Flury' via Django users
On 27/06/18 21:23, Harsh Rawat wrote: I have learnt Django a little bit. I need help regarding the ticket https://code.djangoproject.com/ticket/28905 .What should I learn in Django to be able to contribute via this ticket. It looks like this doesn't actually require any knowledge of Django

Re: beginner . problem simple form.

2016-08-30 Thread Jordi Fernandez
console no message, I see in one second what form search in bad url , bad because I want to the same view.(url) It's search in http://127.0.0.1:8000/crearasistenciaclasse/crearasistenciaclasse this is incorrect the correct is http://127.0.0.1:8000/crearasistenciaclasse El diumenge, 21

Re: beginner . problem simple form.

2016-08-30 Thread Jordi Fernandez
the second is a comment El dimarts, 30 agost de 2016 18:56:39 UTC+2, Jordi Fernandez va escriure: > > > yes , we are test > El dilluns, 22 agost de 2016 22:38:39 UTC+2, ludovic coues va escriure: >> >> The second form tag is in an html comment. Everything inside >> won't be rendered. >> >>

Re: beginner . problem simple form.

2016-08-30 Thread Jordi Fernandez
yes , we are test El dilluns, 22 agost de 2016 22:38:39 UTC+2, ludovic coues va escriure: > > The second form tag is in an html comment. Everything inside > won't be rendered. > > 2016-08-22 14:31 GMT+02:00 Vijay Khemlani : > > > Also, why do you have two form tags in

Re: beginner . problem simple form.

2016-08-22 Thread Andromeda Yelton
Is 'dojo.views.reportaralumnos' an appropriate argument for redirect()? See https://docs.djangoproject.com/en/1.10/topics/http/shortcuts/#redirect - it's looking for the name of a URL or the actual callable view object (such as you might feed to reverse() -

Re: beginner . problem simple form.

2016-08-22 Thread ludovic coues
The second form tag is in an html comment. Everything inside won't be rendered. 2016-08-22 14:31 GMT+02:00 Vijay Khemlani : > Also, why do you have two form tags in your html? > > On Sun, Aug 21, 2016 at 10:40 AM, ludovic coues wrote: >> >> Do you have any

Re: beginner . problem simple form.

2016-08-22 Thread Vijay Khemlani
Also, why do you have two form tags in your html? On Sun, Aug 21, 2016 at 10:40 AM, ludovic coues wrote: > Do you have any message in the console where you run "python manage.py > runserver" ? > > 2016-08-21 12:16 GMT+02:00 Jordi Fernandez : > > hi,

Re: beginner . problem simple form.

2016-08-21 Thread ludovic coues
Do you have any message in the console where you run "python manage.py runserver" ? 2016-08-21 12:16 GMT+02:00 Jordi Fernandez : > hi, > > I have my firts application django it's fine. . But! I have a problem with a > simple form. I think this is a problem the my

Re: Beginner question regarding virtualenv

2016-06-25 Thread Leo Vensel
Great advice from everyone glad I asked. Project dependencies file definitely! Thanks On Fri, Jun 24, 2016 at 10:45 AM, Nate Granatir wrote: > I've found that virtualenvs are definitely worth the time to set up, there > will be a time down the road when you need to have

Re: Beginner question regarding virtualenv

2016-06-24 Thread Nate Granatir
I've found that virtualenvs are definitely worth the time to set up, there will be a time down the road when you need to have two different versions of the same package. Also, I'd strongly recommend storing the project's dependencies in a requirements.txt file. I have a terrible memory and

Re: Beginner question regarding virtualenv

2016-06-23 Thread Tiglath Suriol
On Thursday, June 23, 2016 at 2:38:45 PM UTC-4, Leo wrote: > > Hey Everyone, > > > I’m a total newb to using Django and open stack. I am working on creating > a Django development environment in a VMware environment/Ubuntu OS. > Eventually I want to deploy this to production. The site’s

Re: Beginner question regarding virtualenv

2016-06-23 Thread Mike Dewhirst
On 24/06/2016 4:36 AM, Leo wrote: Hey Everyone, I’m a total newb to using Django and open stack. I am working on creating a Django development environment in a VMware environment/Ubuntu OS. Eventually I want to deploy this to production. The site’s purpose is as an intranet site. I

Re: Beginner question regarding virtualenv

2016-06-23 Thread Leo
Gary and Daniele, Looks like setting-up virtual environments is the way to go. Thanks for your help. I'm glad I asked before really digging in to serious development. Leo On Thursday, June 23, 2016 at 3:06:16 PM UTC-4, gary719_list1 wrote: > > On 06/23/2016 11:36 AM, Leo wrote: > Hi Leo, > >

Re: Beginner question regarding virtualenv

2016-06-23 Thread Gary Roach
On 06/23/2016 11:36 AM, Leo wrote: Hi Leo, The only problem with not using virtuaenv in your case is if you are still periodically updating your software. Since you are using the OS versions of python and django you are at the mercy of those upgrades. A switch from Django 1.8 to 1.9 could

Re: Beginner question regarding virtualenv

2016-06-23 Thread Daniele Procida
On Thu, Jun 23, 2016, Leo wrote: >I have been following the Django tutorial but recently discovered some >other Django tutorials which led me to posting this question. I didn't >create a Python vitrualenv rather installed everything at the root of the >OS. I am unsure if

Re: Beginner, Adding a feature in a Django based website

2016-03-12 Thread René Fleschenberg
Hi Sourav, > I require some help in the issue given here > .We wish to implement > a closing account feature in a Django Website.So far, I know that the > corresponding database entry for the user must be deleted from the > database.But I

Re: beginner for Django and Python

2015-12-26 Thread Daniel Chimeno
Hello, As far as I know, the Django integration within PyCharm it's only the paid version, there is a official guide over here: https://www.jetbrains.com/pycharm/help/creating-django-project.html Hope it helps. El sábado, 26 de diciembre de 2015, 11:15:09 (UTC+1), Sahil Karkhanis escribió: >

Re: Beginner: What are the pitfalls of using an html form without using django forms? I.e. form.py

2014-12-09 Thread mulianto
Hi Tdkwon, What the benefits using django forms something like : 1. You can reuse it on another view programmatic way, not copy paste html only 2. You have the definition of form in 1 place rather distributed on many views to change it. 3. You have the helptext, error message, validation, css

Re: Beginner: What are the pitfalls of using an html form without using django forms? I.e. form.py

2014-12-09 Thread T Kwn
Thx for the explanation. I thought as much but as a beginner am always worried about some unforseen consequence. On Tuesday, December 9, 2014 1:26:47 AM UTC-8, Daniel Roseman wrote: > > On Tuesday, 9 December 2014 01:37:44 UTC, T Kwn wrote: >> >> I'm created a form where a user can add or remove

Re: Beginner: What are the pitfalls of using an html form without using django forms? I.e. form.py

2014-12-09 Thread Daniel Roseman
On Tuesday, 9 December 2014 01:37:44 UTC, T Kwn wrote: > > I'm created a form where a user can add or remove other users from a > group. Because the number of available users is unknown beforehand, I > needed to create a checkbox form where the number of elements is dynamic. > However, I

Re: Beginner: Creating a form with variable number of checkboxes

2014-12-04 Thread Collin Anderson
Hi, The forms.ModelMultipleChoiceField might help you out here. class UpdateGroup(forms.Form): non_member_checkboxes = forms.ModelMultipleChoiceField( queryset=User.objects.all(), widget=forms.CheckboxSelectMultiple, ) Collin On Tuesday, December 2, 2014 7:27:47 PM

Re: Beginner needs help with models.py for a Survey like Website

2014-11-12 Thread Collin Anderson
Hello, It seems to me you should merge your Picture and Collection model, right? because there's a collection of questions for each picture? So I thought that I need additional fields in the Picture class to safe the > average score, but what if my question list changes? Then I need to update

Aw: Re: Beginner: ManyToManyFields error creating the model / adding values by the Admin Module or the Shell

2014-11-06 Thread lnzy35en
ederstrand.dk> An: "Django Users" <django-users@googlegroups.com> Betreff: Re: Beginner: ManyToManyFields error creating the model / adding values by the Admin Module or the Shell > Den 04/11/2014 kl. 23.07 skrev lnzy3...@gmx.de: > > > Hi Erik, > > the id

Re: Beginner: ManyToManyFields error creating the model / adding values by the Admin Module or the Shell

2014-11-05 Thread Erik Cederstrand
> Den 04/11/2014 kl. 23.07 skrev lnzy3...@gmx.de: > > > Hi Erik, > > the idea was, that one Author can write in more than one language (eg. en and > de), or no one at all. This was the background to use the ManyToManyField. Yes, but then you simply create multiple Interest objects, right?

Aw: Re: Beginner: ManyToManyFields error creating the model / adding values by the Admin Module or the Shell

2014-11-04 Thread lnzy35en
22:42 Uhr Von: "Erik Cederstrand" <erik+li...@cederstrand.dk> An: "Django Users" <django-users@googlegroups.com> Betreff: Re: Beginner: ManyToManyFields error creating the model / adding values by the Admin Module or the Shell > Den 04/11/2014 kl. 19.16 skrev ln

Re: Beginner: ManyToManyFields error creating the model / adding values by the Admin Module or the Shell

2014-11-04 Thread Erik Cederstrand
> Den 04/11/2014 kl. 19.16 skrev lnzy3...@gmx.de: > > Hi, > Sorry, via the admin interface (Web-GUI) I have inserted the following values: > My Actions > en > Language > > mike.test // t...@test.de > User > > Dan Brown > Author > > If I now try to add an Interest (“Dan Brown” and “en”) via the

Re: Beginner: ManyToManyFields error creating the model / adding values by the Admin Module or the Shell

2014-11-04 Thread Erik Cederstrand
> Den 04/11/2014 kl. 10.57 skrev lnzy3...@gmx.de: > [...] > Now I try to add some User with an Interest using the Admin module or the > Shell to find out how to do that (real syntax and model) by the “site”. But > unfortunately both the shell and furthermore the graphical admin module give > me

Re: Beginner to Django

2013-10-04 Thread Ovnicraft
On Thu, Oct 3, 2013 at 5:20 AM, Manimaran R wrote: > hai everyone!! > > im a beginner to django,dont have prior knownledge about django!! > > Help me step by step,rit frm installation! > > for ur ref im using windows 7! dont have any open source,so help me with >

Re: Beginner to Django

2013-10-03 Thread Mario Gudelj
Hey champ! Watch this video on installation on windaz www.youtube.com/watch?v=rIVwVOpwpsA Then tackle this tutorial https://docs.djangoproject.com/en/dev/intro/tutorial01/ On 3 October 2013 20:20, Manimaran R wrote: > hai everyone!! > > im a beginner to

Re: Beginner problem linking pages from homepage?

2012-09-23 Thread Vincent Fulco
(may be in a link on your first page) or > change the urls.py accordingly. > > HTH > > Jirka > -- > *From: * Vincent Fulco <vfu...@gmail.com > > *Sender: * django...@googlegroups.com > *Date: *Sun, 23 Sep 2012 12:47:39 -0700 (PDT) > *T

Re: Beginner problem linking pages from homepage?

2012-09-23 Thread jirka . vejrazka
: Vincent Fulco <vful...@gmail.com> Sender: django-users@googlegroups.com Date: Sun, 23 Sep 2012 12:47:39 To: <django-users@googlegroups.com> Reply-To: django-users@googlegroups.com Subject: Re: Beginner problem linking pages from homepage? Thank you for the timely advice. Before

Re: Beginner problem linking pages from homepage?

2012-09-23 Thread Vincent Fulco
Addendum: the views.py also has the required 'from django.foo import" lines naturally. On Sunday, September 23, 2012 2:47:39 PM UTC-5, Vincent Fulco wrote: > > Thank you for the timely advice. Before I move my "base/homepage" site to > its own app dir, thought I would give it another pass

Re: Beginner problem linking pages from homepage?

2012-09-23 Thread Vincent Fulco
Thank you for the timely advice. Before I move my "base/homepage" site to its own app dir, thought I would give it another pass using your changes. Verified 'mysite.urls' in settings.py, added 'mysite' to the urlpatterns arg and put quotes around the hello func. I have had debugging from the

Re: Beginner problem linking pages from homepage?

2012-09-22 Thread Sam Lai
On 23 September 2012 06:40, Vincent Fulco wrote: > Missing something basic here even after scouring web and running thru online > tut a few times. > > Started a project 'mysite' and added twitter bootstrap then created a static > homepage "index.html' to act as a simple

Re: Beginner: how to display the list of records with subrecords? (solved)

2011-11-22 Thread Petr Přikryl
My appology, Javier, > Javier Guerra Giraldez write >>Petr Přikryl wrote: >> I tried the tutorial, and I like it, but it is too much of new things >> for me. > >but all these new things are needed to solve your problem. I did study the tutorial, but I had picked only the things that I could

Re: Beginner: how to display the list of records with subrecords?

2011-11-21 Thread Petr Přikryl
Hi Javier, > Od: "Javier Guerra Giraldez" >>PP wrote... >> I tried the tutorial, and I like it, but it is too much of new things >> for me. > >but all these new things are needed to solve your problem. > >for us (or anybody) to help you, we'd need first a common language, or >else we would waste

Re: Beginner: how to display the list of records with subrecords?

2011-11-20 Thread Javier Guerra Giraldez
On Sun, Nov 20, 2011 at 12:05 PM, Petr Přikryl wrote: > I tried the tutorial, and I like it, but it is too much of new things > for me. but all these new things are needed to solve your problem. for us (or anybody) to help you, we'd need first a common language, or else we

Re: Beginner a bit lost - need some pointers please

2011-10-07 Thread Chris G
On Fri, Oct 07, 2011 at 11:40:03AM +0100, Chris G wrote: > On Fri, Oct 07, 2011 at 11:47:49AM +0530, kenneth gonsalves wrote: > > On Thu, 2011-10-06 at 10:00 +0100, Chris G wrote: > > > > this is as simple as it gets > > > > https://bitbucket.org/lawgon/django-addition/overview > > > > > > Too

Re: Beginner a bit lost - need some pointers please

2011-10-07 Thread kenneth gonsalves
On Fri, 2011-10-07 at 11:40 +0100, Chris G wrote: > > https://bitbucket.org/lawgon/django-addition/wiki/Home > > Ah, OK, I did look around for some instructions but didn't find them. > Thank you, I'll go and play some further! :-) I have put the instruction on the front page - thanks for the

Re: Beginner a bit lost - need some pointers please

2011-10-07 Thread Chris G
On Fri, Oct 07, 2011 at 11:47:49AM +0530, kenneth gonsalves wrote: > On Thu, 2011-10-06 at 10:00 +0100, Chris G wrote: > > > this is as simple as it gets > > > https://bitbucket.org/lawgon/django-addition/overview > > > > Too simple for me, it doesn't run. > > > > chris$ python manage.py

Re: Beginner a bit lost - need some pointers please

2011-10-07 Thread kenneth gonsalves
On Thu, 2011-10-06 at 10:00 +0100, Chris G wrote: > > this is as simple as it gets > > https://bitbucket.org/lawgon/django-addition/overview > > Too simple for me, it doesn't run. > > chris$ python manage.py runserver > Error: No module named addition.addnums you did not follow the

Re: Beginner a bit lost - need some pointers please

2011-10-06 Thread Chris G
On Thu, Oct 06, 2011 at 10:09:05AM +0100, Cal Leeming [Simplicity Media Ltd] wrote: >Chris - >The only thing I can say, is that you've been given some really good >advice on this thread so far. Yes, I'm not complaining at all, the feedback has all been very helpful. I'm just rather

Re: Beginner a bit lost - need some pointers please

2011-10-06 Thread Cal Leeming [Simplicity Media Ltd]
Chris - The only thing I can say, is that you've been given some really good advice on this thread so far. These lists are really meant to be a "nudge in the right direction" rather than a "fully fledged training experience" [1]. There are plenty of django projects on Github which show a fully

Re: Beginner a bit lost - need some pointers please

2011-10-06 Thread Chris G
On Thu, Oct 06, 2011 at 01:14:37AM -0700, Daniel Roseman wrote: > On Wednesday, 5 October 2011 20:55:33 UTC+1, Chris Green wrote: > > I'm an experienced programmer (started around 1971 or so!) and I've done > lots of things over the years, much of my background is in Unix >

Re: Beginner a bit lost - need some pointers please

2011-10-06 Thread Chris G
On Thu, Oct 06, 2011 at 11:01:13AM +0530, kenneth gonsalves wrote: > On Wed, 2011-10-05 at 23:02 +0100, Chris G wrote: > > OK, so there isn't a single simple answer. However it would still be > > really nice to see a complete two or three page django site with a > > database behind it fully

Re: Beginner a bit lost - need some pointers please

2011-10-06 Thread Kevin
For that it's worth, I deploy my Django projects using Nginx and FastCGI. I find this solution to be working rather nicely, Nginx takes care of serving all the static content really fast and passes the app requests to Django. It's really quick and easy to set-up too. I prefer Nginx as I can

Re: Beginner a bit lost - need some pointers please

2011-10-06 Thread Daniel Roseman
> > On Wednesday, 5 October 2011 20:55:33 UTC+1, Chris Green wrote: > I'm an experienced programmer (started around 1971 or so!) and I've done > lots of things over the years, much of my background is in Unix (Solaris). > In the last few years I have done quite a lot of web related stuff. > > I'm

Re: Beginner a bit lost - need some pointers please

2011-10-05 Thread kenneth gonsalves
On Wed, 2011-10-05 at 23:02 +0100, Chris G wrote: > OK, so there isn't a single simple answer. However it would still be > really nice to see a complete two or three page django site with a > database behind it fully implemented as an example. > > this is as simple as it gets

Re: Beginner a bit lost - need some pointers please

2011-10-05 Thread Kurtis Mullins
I just wanted to put my 2 cents in. #django on Freenode is a great place to get real-time help with simple questions. On Oct 5, 2011, at 6:02 PM, Chris G wrote: > On Wed, Oct 05, 2011 at 04:35:49PM -0400, Peter Herndon wrote: >> >> On Oct 5, 2011, at 3:55 PM, Chris G wrote: >>> >>> However

Re: Beginner a bit lost - need some pointers please

2011-10-05 Thread Chris G
On Wed, Oct 05, 2011 at 04:35:49PM -0400, Peter Herndon wrote: > > On Oct 5, 2011, at 3:55 PM, Chris G wrote: > > > > However two rather basic things still elude me:- > > > >Where/how do I actually start creating the top level/page of a web > >site? Do I just open vi and create some

Re: Beginner a bit lost - need some pointers please

2011-10-05 Thread Chris G
On Wed, Oct 05, 2011 at 03:02:13PM -0500, Javier Guerra Giraldez wrote: > On Wed, Oct 5, 2011 at 2:55 PM, Chris G wrote: > > I'm trying to get my mind round django.  I have it installed on my > > unbuntu server, it works, I've worked through tutorials 1 and 2 and a > > bit of 3.  I

Re: Beginner a bit lost - need some pointers please

2011-10-05 Thread Chris G
On Wed, Oct 05, 2011 at 08:58:10PM +0100, Cal Leeming [Simplicity Media Ltd] wrote: >Hi Chris, >I'm assuming that you don't have any experience with Python?? No/yes, I *do* have Python experience, it's my language of choice for scripts which require a bit more than basic shell scripting.

Re: Beginner a bit lost - need some pointers please

2011-10-05 Thread Peter Herndon
On Oct 5, 2011, at 3:55 PM, Chris G wrote: > > However two rather basic things still elude me:- > >Where/how do I actually start creating the top level/page of a web >site? Do I just open vi and create some HTML and embed django >code? That seems unlikely but I can't see anywhere

Re: Beginner a bit lost - need some pointers please

2011-10-05 Thread Javier Guerra Giraldez
On Wed, Oct 5, 2011 at 3:20 PM, Ivan Ivanov wrote: >> about how to write, check the paragraph about the MTV architecture: > > If you are familier with MVC (Model, View, Controller), MTV is the same > but with different component names. sorry, but no. a Django view is

  1   2   >