inventory in Django

2016-04-08 Thread Becka R.
Hi, Sorry if this question seems basic, but I'm having trouble figuring out the best way to approach this on a high level. I'm at the beginning stages of building an ecommerce site,. Inventory changes regularly, and photos and descriptions need to be easy to update for my client. Is this an

django dynamically updating dashboard

2016-03-28 Thread Becka R.
Hi, I suspect this calls for celery, which I've never used. Can someone point me in a direction of docs or a tutorial? App examples would be amazing. Thank you. Becka -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

advanced beginner / early intermediate Django users

2016-03-19 Thread Becka R.
Hi there, This is less about solving a specific coding issue in Django, and more asking for input from other people who have hit walls in Django. I hope this is within the scope of what this list is used for, and if it isn't I apologize. I've now written a couple of Django CRUD

no migrations folder

2016-03-08 Thread Becka R.
Hi, My migrations aren't being created. I think that's the problem, anyway - there's no migrations folder, and the table I've created doesn't exist when I search in the shell. Here's 'my file structure: /ladynerds manage.py db.sqlite3 /ladynerds /static /templates __init.__py forms.py

I don't understand this error - Django 1.9

2016-03-04 Thread Becka R.
Hi, I'm building a pretty basic CRUD application for a community I'm part of. I'm now getting "ImportError: No module named [myappname]" when I run the server, and an operational error in the admin. I looked at the documentation, and followed the steps, but I'm not doing something

allow both edits and additions in form

2015-12-03 Thread Becka R.
Hi, I've been tryign to understand this for a while, and am pretty stuck. I've googled extensively. My form currently allows me to add items to teh datatable. I want to be able to, in the same template, edit each row. I put a button in each table row, and I want to get the pk for the item

Re: matching query does not exist.

2015-11-20 Thread Becka R.
ns None. > When that gets passed to mealShifts.objects.get(pk=shift_id), it raises > the error. > You can confirm that by inserting the line > import pdb;pdb.set_trace() > before that line and run `print(request.POST.get('shift_id'))` when the > django toy server hits that breakpoi

matching query does not exist.

2015-11-19 Thread Becka R.
Hi -- I'm working on a personal project, and have been stuck on this problem for a bit of time. There don't seem to be examples out there for editing tables with data. Is this right? Am I looking in the right places? I'm still pretty new at Django, and learning largely on my own. I have

n00b question about displaying data in order by day

2015-11-06 Thread Becka R.
Hi -- I'm building a scheduling app for my burning man camp. There are seven days (Mon-Sun), and each day has two meals, and people can sign up for the available shifts. Here's my table: class mealShifts(models.Model): Sunday = "Sunday" Monday = "Monday" Tuesday = "Tuesday" Wednesday =

looking for a basic model form example

2015-10-24 Thread Becka R.
Hi there, I'm seeing a lot of pretty conflicting explanations for constructing a basic model form that gets and posts data. Can anyone point me to a succinct example? I'm looking at the official tutorial, and don't understand which parts are fundamental, and I'm seeing a lot of other

Re: solution to static file loading issue on 1.8

2015-10-23 Thread Becka R.
docs that would be > welcome. > > On Friday, October 23, 2015 at 12:18:13 PM UTC-4, Becka R. wrote: >> >> Hi, >> >> I just spent hours on this problem, and (at last) stumbled into the >> Stack Overflow answer, and wanted to preserve this for posterity. >&

solution to static file loading issue on 1.8

2015-10-23 Thread Becka R.
Hi, I just spent hours on this problem, and (at last) stumbled into the Stack Overflow answer, and wanted to preserve this for posterity. I'm using Django 1.8, and wasn't able to get my static files to load on my local server. I finally found the Stack Overflow answe