How to change the appearance of the Admin date widget in front end (previous question deleted)

2012-10-16 Thread Saadat


I integrated the Django Admin datewidget into my front end. I want to 
change the appearance and some text in the calendar that appears. So, I 
found out that somehow, the script that is being invoked is 
DateTimeShortcuts.js. I tried to change the code through su vi and saved 
the changes, but no change appears in the output. Can someone point out 
what I'm doing wrong. I pasted the link to the screenshot to make it easier 
for you to understand what I'm trying to do. Help will really be 
appreciated. Thanks a lot.

http://imageshack.us/a/img31/2977/screenshot20121016at709.png

Saadat

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/zfauDIyymD4J.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Edit the appearance of Django admin date widget in front end.

2012-10-16 Thread Saadat


I integrated the Django Admin datewidget into my front end. I want to 
change the appearance and some text in the calendar that appears. So, I 
found out that somehow, the script that is being invoked is 
DateTimeShortcuts.js. I tried to change the code through su vi and saved 
the changes, but no change appears in the output. Can someone point out 
what I'm doing wrong. I pasted the link to the screenshot to make it easier 
for you to understand what I'm trying to do. Help will really be 
appreciated. Thanks a lot.

http://imageshack.us/a/img31/2977/screenshot20121016at709.png

Saadat

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/MfSPLwIv4pYJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Creating a hospital erp (hospital management) in Django

2012-02-20 Thread Saadat
Hello all
I'm stuck on static files since yesterday. It gives me an error that
no module called "staticfiles" found.  What my requirement is that i
have a header file where I'm including a css dropdown menu. how do i
include that file, without using staticfiles. What all needs to be
done to include that file. Thanks a lot.

Saadat

On Feb 18, 7:09 pm, Marc Aymerich  wrote:
> On Sat, Feb 18, 2012 at 2:52 PM, Saadat  wrote:
> > Alec, I've tried including this css file everywhere, but it doesn't show up 
> > anywhere. What exactly do i do with it to include this script on any page, 
> > say index. i tried doing it through html as well as django. I don't know 
> > what I'm doing wrong?
>
> check this:https://docs.djangoproject.com/en/dev/howto/static-files/
>
> btw, this seems to me a very basic web dev related question, so maybe
> it will be better for you to spend some time learning general web dev
> related stuff before doing things by your own.
>
> --
> Marc

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Creating a hospital erp (hospital management) in Django

2012-02-18 Thread Saadat
Alec, I've tried including this css file everywhere, but it doesn't show up 
anywhere. What exactly do i do with it to include this script on any page, say 
index. i tried doing it through html as well as django. I don't know what I'm 
doing wrong?


On 18-Feb-2012, at 6:49 PM, Alec Taylor wrote:

> http://divitodesign.com/css/how-to-dropdown-css-menu/
> 
> When you're doing template stuff, read:
> - HTML
> - CSS
> - JS
> - Python
> 
> tutorials.
> 
> Also, get a book. The questions you are asking are textbook level questions.
> 
> On Sat, Feb 18, 2012 at 11:53 PM, Saadat  wrote:
>> Hello all
>> Can someone guide me to create a drop down menu (single-level).. i
>> need to put this menu in a header file that will be included in every
>> page. A bit of code and some explanation is required. tried searching
>> on the Internet, but couldn't find anything. thanks a lot
>> 
>> On Feb 17, 7:50 am, Alec Taylor  wrote:
>>> ModelForm
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> On Thu, Feb 16, 2012 at 10:18 PM, Saadat  wrote:
>>>> Hi all, I created a view today and I could access the database
>>>> contents using Templates. Now I wish to create a listbox that would
>>>> have the names of doctors. When an item from the list is selected, an
>>>> sql query should be sent which will return all the details of that
>>>> doctor, where doc_id is the primary key? how do we create buttons? do
>>>> we need to use html or django can handle them also?
>>> 
>>>> Thanks a lot people.
>>>> Saadat
>>> 
>>>> On Feb 16, 4:12 pm, Saadat  wrote:
>>>>> Hello All
>>>>> I created a view today and I could access the database values usi
>>> 
>>>>> On Feb 14, 8:07 am, Python_Junkie 
>>>>> wrote:
>>> 
>>>>>> Now that you have your file >>models.py  >>>> place this file in the
>>>>>> app folder after creating your app
>>> 
>>>>>> 1.  python manage.py start app  My_Erp (for example)
>>>>>> 2.  a blank models.py file will be created, overwrite this with your
>>>>>> models.py
>>>>>> 3. run the command to sync the database, assuming that your set up the
>>>>>> settings.py file has been set up correctly to connect to the database
>>>>>> of your choice.
>>> 
>>>>>> python manage.py syncdb
>>> 
>>>>>> Let me know if this works for you
>>> 
>>>>>> On Feb 13, 3:56 pm,Saadat wrote:
>>> 
>>>>>>> Thank you Python_junkie
>>>>>>> I've created the poll app and I'm working on this Hospital ERP thing.
>>>>>>> I've also created the database schema and put some dummy values for
>>>>>>> testing. Then I created the models using 'inspected' command and saved
>>>>>>> the models in models.py file. Now I'm confused where to put the
>>>>>>> models.py file and what to with it. Guide me please.
>>> 
>>>>>>> Thanks a lot.
>>>>>>> Saadat
>>> 
>>>>>>> On Feb 10, 6:18 pm, Python_Junkie 
>>>>>>> wrote:
>>> 
>>>>>>>> Not sure from your post, which piece you are stuck on.
>>> 
>>>>>>>> 1. Have you used Django before?
>>>>>>>> If not start with the tutorial
>>> 
>>>>>>>> https://www.djangoproject.com/
>>> 
>>>>>>>> 2. If you have a basic understanding of Django, have you been able to
>>>>>>>> set up a basic project /app and connect run syncdb.
>>>>>>>> One can always connect to the sqllite database, because it is built
>>>>>>>> in, but getting some other database to connect can be a time consuming
>>>>>>>> process if the procedure has not been established on your machine.
>>> 
>>>>>>>> 3. If you have done the above 2 items then you should move in a
>>>>>>>> parallel path.
>>> 
>>>>>>>> a. Start defining your database model to support the business and the
>>>>>>>> workflow that you intend to create.
>>>>>>>> b. Use some sort of wire frame (framework) to lay out your web pages
>>>>>>

Re: Creating a hospital erp (hospital management) in Django

2012-02-18 Thread Saadat
Hello all
Can someone guide me to create a drop down menu (single-level).. i
need to put this menu in a header file that will be included in every
page. A bit of code and some explanation is required. tried searching
on the Internet, but couldn't find anything. thanks a lot

On Feb 17, 7:50 am, Alec Taylor  wrote:
> ModelForm
>
>
>
>
>
>
>
> On Thu, Feb 16, 2012 at 10:18 PM, Saadat  wrote:
> > Hi all, I created a view today and I could access the database
> > contents using Templates. Now I wish to create a listbox that would
> > have the names of doctors. When an item from the list is selected, an
> > sql query should be sent which will return all the details of that
> > doctor, where doc_id is the primary key? how do we create buttons? do
> > we need to use html or django can handle them also?
>
> > Thanks a lot people.
> > Saadat
>
> > On Feb 16, 4:12 pm, Saadat  wrote:
> >> Hello All
> >> I created a view today and I could access the database values usi
>
> >> On Feb 14, 8:07 am, Python_Junkie 
> >> wrote:
>
> >> > Now that you have your file >>models.py  >>>> place this file in the
> >> > app folder after creating your app
>
> >> > 1.  python manage.py start app  My_Erp (for example)
> >> > 2.  a blank models.py file will be created, overwrite this with your
> >> > models.py
> >> > 3. run the command to sync the database, assuming that your set up the
> >> > settings.py file has been set up correctly to connect to the database
> >> > of your choice.
>
> >> > python manage.py syncdb
>
> >> > Let me know if this works for you
>
> >> > On Feb 13, 3:56 pm,Saadat wrote:
>
> >> > > Thank you Python_junkie
> >> > > I've created the poll app and I'm working on this Hospital ERP thing.
> >> > > I've also created the database schema and put some dummy values for
> >> > > testing. Then I created the models using 'inspected' command and saved
> >> > > the models in models.py file. Now I'm confused where to put the
> >> > > models.py file and what to with it. Guide me please.
>
> >> > > Thanks a lot.
> >> > >Saadat
>
> >> > > On Feb 10, 6:18 pm, Python_Junkie 
> >> > > wrote:
>
> >> > > > Not sure from your post, which piece you are stuck on.
>
> >> > > > 1. Have you used Django before?
> >> > > > If not start with the tutorial
>
> >> > > >https://www.djangoproject.com/
>
> >> > > > 2. If you have a basic understanding of Django, have you been able to
> >> > > > set up a basic project /app and connect run syncdb.
> >> > > > One can always connect to the sqllite database, because it is built
> >> > > > in, but getting some other database to connect can be a time 
> >> > > > consuming
> >> > > > process if the procedure has not been established on your machine.
>
> >> > > > 3. If you have done the above 2 items then you should move in a
> >> > > > parallel path.
>
> >> > > > a. Start defining your database model to support the business and the
> >> > > > workflow that you intend to create.
> >> > > > b. Use some sort of wire frame (framework) to lay out your web pages
> >> > > > to support and interact step 3 a.
>
> >> > > > On Feb 10, 8:06 am, adesantoas...@gmail.com wrote:
>
> >> > > > > Hello, nice thread.
>
> >> > > > > **tagged to keep following..
>
> >> > > > > +adesst
>
> >> > > > > -Original Message-
> >> > > > > From:Saadat
>
> >> > > > > Sender: django-users@googlegroups.com
> >> > > > > Date: Fri, 10 Feb 2012 02:58:16
> >> > > > > To: Django users
> >> > > > > Reply-To: django-users@googlegroups.com
> >> > > > > Subject: Creating a hospital erp (hospital management) in Django
>
> >> > > > > Hello All,
> >> > > > > I'm in my final year of computer science engineering and for my 
> >> > > > > final
> >> > > > > year project, i'm creating a hospital erp. I'm a bit confused about
> >> > > > > where to start from. Any sort of help will be appreciated. Thanks a
&

Re: Creating a hospital erp (hospital management) in Django

2012-02-16 Thread Saadat
Hi all, I created a view today and I could access the database
contents using Templates. Now I wish to create a listbox that would
have the names of doctors. When an item from the list is selected, an
sql query should be sent which will return all the details of that
doctor, where doc_id is the primary key? how do we create buttons? do
we need to use html or django can handle them also?

Thanks a lot people.
Saadat

On Feb 16, 4:12 pm, Saadat  wrote:
> Hello All
> I created a view today and I could access the database values usi
>
> On Feb 14, 8:07 am, Python_Junkie 
> wrote:
>
>
>
>
>
>
>
> > Now that you have your file >>models.py  >>>> place this file in the
> > app folder after creating your app
>
> > 1.  python manage.py start app  My_Erp (for example)
> > 2.  a blank models.py file will be created, overwrite this with your
> > models.py
> > 3. run the command to sync the database, assuming that your set up the
> > settings.py file has been set up correctly to connect to the database
> > of your choice.
>
> > python manage.py syncdb
>
> > Let me know if this works for you
>
> > On Feb 13, 3:56 pm,Saadat wrote:
>
> > > Thank you Python_junkie
> > > I've created the poll app and I'm working on this Hospital ERP thing.
> > > I've also created the database schema and put some dummy values for
> > > testing. Then I created the models using 'inspected' command and saved
> > > the models in models.py file. Now I'm confused where to put the
> > > models.py file and what to with it. Guide me please.
>
> > > Thanks a lot.
> > >Saadat
>
> > > On Feb 10, 6:18 pm, Python_Junkie 
> > > wrote:
>
> > > > Not sure from your post, which piece you are stuck on.
>
> > > > 1. Have you used Django before?
> > > > If not start with the tutorial
>
> > > >https://www.djangoproject.com/
>
> > > > 2. If you have a basic understanding of Django, have you been able to
> > > > set up a basic project /app and connect run syncdb.
> > > > One can always connect to the sqllite database, because it is built
> > > > in, but getting some other database to connect can be a time consuming
> > > > process if the procedure has not been established on your machine.
>
> > > > 3. If you have done the above 2 items then you should move in a
> > > > parallel path.
>
> > > > a. Start defining your database model to support the business and the
> > > > workflow that you intend to create.
> > > > b. Use some sort of wire frame (framework) to lay out your web pages
> > > > to support and interact step 3 a.
>
> > > > On Feb 10, 8:06 am, adesantoas...@gmail.com wrote:
>
> > > > > Hello, nice thread.
>
> > > > > **tagged to keep following..
>
> > > > > +adesst
>
> > > > > -Original Message-
> > > > > From:Saadat
>
> > > > > Sender: django-users@googlegroups.com
> > > > > Date: Fri, 10 Feb 2012 02:58:16
> > > > > To: Django users
> > > > > Reply-To: django-users@googlegroups.com
> > > > > Subject: Creating a hospital erp (hospital management) in Django
>
> > > > > Hello All,
> > > > > I'm in my final year of computer science engineering and for my final
> > > > > year project, i'm creating a hospital erp. I'm a bit confused about
> > > > > where to start from. Any sort of help will be appreciated. Thanks a
> > > > > lot.
>
> > > > > Cheers
> > > > >Saadat
>
> > > > > --
> > > > > You received this message because you are subscribed to the Google 
> > > > > Groups "Django users" group.
> > > > > To post to this group, send email to django-users@googlegroups.com.
> > > > > To unsubscribe from this group, send email to 
> > > > > django-users+unsubscr...@googlegroups.com.
> > > > > For more options, visit this group 
> > > > > athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Creating a hospital erp (hospital management) in Django

2012-02-16 Thread Saadat
Hello All
I created a view today and I could access the database values usi

On Feb 14, 8:07 am, Python_Junkie 
wrote:
> Now that you have your file >>models.py  >>>> place this file in the
> app folder after creating your app
>
> 1.  python manage.py start app  My_Erp (for example)
> 2.  a blank models.py file will be created, overwrite this with your
> models.py
> 3. run the command to sync the database, assuming that your set up the
> settings.py file has been set up correctly to connect to the database
> of your choice.
>
> python manage.py syncdb
>
> Let me know if this works for you
>
> On Feb 13, 3:56 pm,Saadat wrote:
>
> > Thank you Python_junkie
> > I've created the poll app and I'm working on this Hospital ERP thing.
> > I've also created the database schema and put some dummy values for
> > testing. Then I created the models using 'inspected' command and saved
> > the models in models.py file. Now I'm confused where to put the
> > models.py file and what to with it. Guide me please.
>
> > Thanks a lot.
> >Saadat
>
> > On Feb 10, 6:18 pm, Python_Junkie 
> > wrote:
>
> > > Not sure from your post, which piece you are stuck on.
>
> > > 1. Have you used Django before?
> > > If not start with the tutorial
>
> > >https://www.djangoproject.com/
>
> > > 2. If you have a basic understanding of Django, have you been able to
> > > set up a basic project /app and connect run syncdb.
> > > One can always connect to the sqllite database, because it is built
> > > in, but getting some other database to connect can be a time consuming
> > > process if the procedure has not been established on your machine.
>
> > > 3. If you have done the above 2 items then you should move in a
> > > parallel path.
>
> > > a. Start defining your database model to support the business and the
> > > workflow that you intend to create.
> > > b. Use some sort of wire frame (framework) to lay out your web pages
> > > to support and interact step 3 a.
>
> > > On Feb 10, 8:06 am, adesantoas...@gmail.com wrote:
>
> > > > Hello, nice thread.
>
> > > > **tagged to keep following..
>
> > > > +adesst
>
> > > > -Original Message-
> > > > From:Saadat
>
> > > > Sender: django-users@googlegroups.com
> > > > Date: Fri, 10 Feb 2012 02:58:16
> > > > To: Django users
> > > > Reply-To: django-users@googlegroups.com
> > > > Subject: Creating a hospital erp (hospital management) in Django
>
> > > > Hello All,
> > > > I'm in my final year of computer science engineering and for my final
> > > > year project, i'm creating a hospital erp. I'm a bit confused about
> > > > where to start from. Any sort of help will be appreciated. Thanks a
> > > > lot.
>
> > > > Cheers
> > > >Saadat
>
> > > > --
> > > > You received this message because you are subscribed to the Google 
> > > > Groups "Django users" group.
> > > > To post to this group, send email to django-users@googlegroups.com.
> > > > To unsubscribe from this group, send email to 
> > > > django-users+unsubscr...@googlegroups.com.
> > > > For more options, visit this group 
> > > > athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Creating a hospital erp (hospital management) in Django

2012-02-14 Thread Saadat
Thanks Sebastien, I already have the info about the various
departments of the hospital. I also created a sample database with
tables being Patient detail, Then I created the admin interface and I
could login and see the app over there. I could also access and edit
the details of the tables thru the admin interface. Now, how do i
create the view for normal user who is not an admin. What do i have to
do with the templates? Thanks for everything.

Saadat

On Feb 14, 6:37 pm, sebastien piquemal  wrote:
> +1 to @Patricio Valarezo's comment :
>
> If you want to build a system for hospitals, you've got to know how an
> hospital works first. So, make interviews, draw mockups, more
> interviews, code a prototype, more interviews, and so on ... and only
> then you'll know what you need to do.
>
> On Feb 14, 4:07 am, Python_Junkie 
> wrote:
>
>
>
>
>
>
>
> > Now that you have your file >>models.py  >>>> place this file in the
> > app folder after creating your app
>
> > 1.  python manage.py start app  My_Erp (for example)
> > 2.  a blank models.py file will be created, overwrite this with your
> > models.py
> > 3. run the command to sync the database, assuming that your set up the
> > settings.py file has been set up correctly to connect to the database
> > of your choice.
>
> > python manage.py syncdb
>
> > Let me know if this works for you
>
> > On Feb 13, 3:56 pm, Saadat  wrote:
>
> > > Thank you Python_junkie
> > > I've created the poll app and I'm working on this Hospital ERP thing.
> > > I've also created the database schema and put some dummy values for
> > > testing. Then I created the models using 'inspected' command and saved
> > > the models in models.py file. Now I'm confused where to put the
> > > models.py file and what to with it. Guide me please.
>
> > > Thanks a lot.
> > > Saadat
>
> > > On Feb 10, 6:18 pm, Python_Junkie 
> > > wrote:
>
> > > > Not sure from your post, which piece you are stuck on.
>
> > > > 1. Have you used Django before?
> > > > If not start with the tutorial
>
> > > >https://www.djangoproject.com/
>
> > > > 2. If you have a basic understanding of Django, have you been able to
> > > > set up a basic project /app and connect run syncdb.
> > > > One can always connect to the sqllite database, because it is built
> > > > in, but getting some other database to connect can be a time consuming
> > > > process if the procedure has not been established on your machine.
>
> > > > 3. If you have done the above 2 items then you should move in a
> > > > parallel path.
>
> > > > a. Start defining your database model to support the business and the
> > > > workflow that you intend to create.
> > > > b. Use some sort of wire frame (framework) to lay out your web pages
> > > > to support and interact step 3 a.
>
> > > > On Feb 10, 8:06 am, adesantoas...@gmail.com wrote:
>
> > > > > Hello, nice thread.
>
> > > > > **tagged to keep following..
>
> > > > > +adesst
>
> > > > > -Original Message-
> > > > > From: Saadat 
>
> > > > > Sender: django-users@googlegroups.com
> > > > > Date: Fri, 10 Feb 2012 02:58:16
> > > > > To: Django users
> > > > > Reply-To: django-users@googlegroups.com
> > > > > Subject: Creating a hospital erp (hospital management) in Django
>
> > > > > Hello All,
> > > > > I'm in my final year of computer science engineering and for my final
> > > > > year project, i'm creating a hospital erp. I'm a bit confused about
> > > > > where to start from. Any sort of help will be appreciated. Thanks a
> > > > > lot.
>
> > > > > Cheers
> > > > > Saadat
>
> > > > > --
> > > > > You received this message because you are subscribed to the Google 
> > > > > Groups "Django users" group.
> > > > > To post to this group, send email to django-users@googlegroups.com.
> > > > > To unsubscribe from this group, send email to 
> > > > > django-users+unsubscr...@googlegroups.com.
> > > > > For more options, visit this group 
> > > > > athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Creating a hospital erp (hospital management) in Django

2012-02-13 Thread Saadat
Yeah, the project is to be written in Django and it was meant to be
written in Django only.

On Feb 10, 7:05 pm, Python_Junkie 
wrote:
> Is the project referenced in this link written in Django.
>
> Was your goal for your class project to write a Django app?
>
> On Feb 10, 8:27 am, Richard House  wrote:
>
>
>
>
>
>
>
> > Hi Saadat,
> > Rather than creating something new, have you looked at contributing to 
> > software from such lists like 
> > this?http://en.wikipedia.org/wiki/List_of_open-source_healthcare_software
>
> > Regards,
> > Richard
>
> > On 10 Feb 12, at 10:58, Saadat wrote:
>
> > > Hello All,
> > > I'm in my final year of computer science engineering and for my final
> > > year project, i'm creating a hospital erp. I'm a bit confused about
> > > where to start from. Any sort of help will be appreciated. Thanks a
> > > lot.
>
> > > Cheers
> > > Saadat
>
> > > --
> > > You received this message because you are subscribed to the Google Groups 
> > > "Django users" group.
> > > To post to this group, send email to django-users@googlegroups.com.
> > > To unsubscribe from this group, send email to 
> > > django-users+unsubscr...@googlegroups.com.
> > > For more options, visit this group 
> > > athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Creating a hospital erp (hospital management) in Django

2012-02-13 Thread Saadat
Hi Patricio
I dont understand what you mean by System Development methodology.
What exactly do you want me to let you know?

Thanks

On Feb 10, 6:59 pm, Patricio Valarezo 
wrote:
> El 10/02/12 8:26, Python_Junkie escribi :
>
>
>
>
>
>
>
>
>
> > I had not completed my previous post, and hit the send button by
> > mistake.
>
> > One wire frame work is
> >http://www.balsamiq.com/products/mockups/manifesto
>
> > And you can download a free trial.
>
> > If you search on Frameworks then you will find a number of others that
> > are open source, or you can simply use yellow stickies, as some of
> > these web sites suggest as an alternative.
>
> > Then convert the yellow stickies into web pages and link them to the
> > backend database.
>
> > Good luck
>
> > On Feb 10, 8:18 am, Python_Junkie
> > wrote:
> >> Not sure from your post, which piece you are stuck on.
>
> >> 1. Have you used Django before?
> >> If not start with the tutorial
>
> >>https://www.djangoproject.com/
>
> >> 2. If you have a basic understanding of Django, have you been able to
> >> set up a basic project /app and connect run syncdb.
> >> One can always connect to the sqllite database, because it is built
> >> in, but getting some other database to connect can be a time consuming
> >> process if the procedure has not been established on your machine.
>
> >> 3. If you have done the above 2 items then you should move in a
> >> parallel path.
>
> >> a. Start defining your database model to support the business and the
> >> workflow that you intend to create.
> >> b. Use some sort of wire frame (framework) to lay out your web pages
> >> to support and interact step 3 a.
>
> >> On Feb 10, 8:06 am, adesantoas...@gmail.com wrote:
>
> >>> Hello, nice thread.
> >>> **tagged to keep following..
> >>> +adesst
> >>> -Original Message-
> >>> From: Saadat
> >>> Sender: django-users@googlegroups.com
> >>> Date: Fri, 10 Feb 2012 02:58:16
> >>> To: Django users
> >>> Reply-To: django-users@googlegroups.com
> >>> Subject: Creating a hospital erp (hospital management) in Django
> >>> Hello All,
> >>> I'm in my final year of computer science engineering and for my final
> >>> year project, i'm creating a hospital erp. I'm a bit confused about
> >>> where to start from. Any sort of help will be appreciated. Thanks a
> >>> lot.
>
> What about choosing a system development methodology? A simple one could
> you give some clues, the code is always the last thing to do.
>
> --
> Patricio Valarezo Lozano.
> patov...@pupilabox.net.ecwww.pupilabox.net.ec
> "las cosas no se hacen solas, alguien las tiene que hacer..."

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Creating a hospital erp (hospital management) in Django

2012-02-13 Thread Saadat
Thanks Richard House,
Its my final project and I have to create something new. So I cannot
work on something that has already been built. Thanks again.

On Feb 10, 6:27 pm, Richard House  wrote:
> Hi Saadat,
> Rather than creating something new, have you looked at contributing to 
> software from such lists like 
> this?http://en.wikipedia.org/wiki/List_of_open-source_healthcare_software
>
> Regards,
> Richard
>
> On 10 Feb 12, at 10:58, Saadat wrote:
>
>
>
>
>
>
>
> > Hello All,
> > I'm in my final year of computer science engineering and for my final
> > year project, i'm creating a hospital erp. I'm a bit confused about
> > where to start from. Any sort of help will be appreciated. Thanks a
> > lot.
>
> > Cheers
> > Saadat
>
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to 
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group 
> > athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Creating a hospital erp (hospital management) in Django

2012-02-13 Thread Saadat
Thank you Python_junkie
I've created the poll app and I'm working on this Hospital ERP thing.
I've also created the database schema and put some dummy values for
testing. Then I created the models using 'inspected' command and saved
the models in models.py file. Now I'm confused where to put the
models.py file and what to with it. Guide me please.

Thanks a lot.
Saadat

On Feb 10, 6:18 pm, Python_Junkie 
wrote:
> Not sure from your post, which piece you are stuck on.
>
> 1. Have you used Django before?
> If not start with the tutorial
>
> https://www.djangoproject.com/
>
> 2. If you have a basic understanding of Django, have you been able to
> set up a basic project /app and connect run syncdb.
> One can always connect to the sqllite database, because it is built
> in, but getting some other database to connect can be a time consuming
> process if the procedure has not been established on your machine.
>
> 3. If you have done the above 2 items then you should move in a
> parallel path.
>
> a. Start defining your database model to support the business and the
> workflow that you intend to create.
> b. Use some sort of wire frame (framework) to lay out your web pages
> to support and interact step 3 a.
>
> On Feb 10, 8:06 am, adesantoas...@gmail.com wrote:
>
>
>
>
>
>
>
> > Hello, nice thread.
>
> > **tagged to keep following..
>
> > +adesst
>
> > -Original Message-
> > From: Saadat 
>
> > Sender: django-users@googlegroups.com
> > Date: Fri, 10 Feb 2012 02:58:16
> > To: Django users
> > Reply-To: django-users@googlegroups.com
> > Subject: Creating a hospital erp (hospital management) in Django
>
> > Hello All,
> > I'm in my final year of computer science engineering and for my final
> > year project, i'm creating a hospital erp. I'm a bit confused about
> > where to start from. Any sort of help will be appreciated. Thanks a
> > lot.
>
> > Cheers
> > Saadat
>
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "Django users" group.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to 
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group 
> > athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Creating a hospital erp (hospital management) in Django

2012-02-10 Thread Saadat
Hello All,
I'm in my final year of computer science engineering and for my final
year project, i'm creating a hospital erp. I'm a bit confused about
where to start from. Any sort of help will be appreciated. Thanks a
lot.

Cheers
Saadat

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.