413 Payload Too Large on Django server

2019-03-15 Thread nate
Hey Django experts! My team has been getting 413 errors whenever we try and upload large files to our Django back-end: 413 Payload too large We can't exactly pin down the maximum acceptable file size - it seems to vacillate in the 1-3MB range. Things we have excluded: - It's not a

Re: Apply default filters in admin

2017-04-27 Thread Nate Granatir
That worked! Thanks!! Nate On Wednesday, April 26, 2017 at 6:37:32 AM UTC-5, Todor Velichkov wrote: > > I think `ModelAdmin.changelist_view > <https://docs.djangoproject.com/en/1.11/ref/contrib/admin/#django.contrib.admin.ModelAdmin.changelist_view>` > > is the r

Re: Apply default filters in admin

2017-04-24 Thread Nate Granatir
: > q = request.GET.copy() > q.setdefault('lang', 'en') > return redirect('%s?%s' % (request.path, q.urlencode())) > > > > > On Monday, April 24, 2017 at 7:12:18 PM UTC+3, Nate Granatir wrote: >> >> In my app I have admin

Apply default filters in admin

2017-04-24 Thread Nate Granatir
In my app I have admin filters for a field called "language" - language is a field in several of my models - and I've created them custom, inheriting from SimpleListFilter, so that I can apply a default of English when none has yet been specified. This works almost perfectly - the only problem i

Re: Setting up an App and getting an import error

2017-04-07 Thread Nate Granatir
3/tutorial/modules.html#packages If it's not that, then I have no idea! Nate On Wednesday, April 5, 2017 at 11:28:23 AM UTC-5, jjander...@gmail.com wrote: > > > Hi, > > I'm setting up a Django app using Django 1.10.3 and python 3.5.2. When I > run the following c

Re: How to design High Scalability architecture with Django in cost effective fashion

2017-04-03 Thread Nate Granatir
I am also not even close to being an expert on this topic, but I do know that it's super easy to deploy a Django app on Heroku, which will get you scalable app deployment and Postgres dbs with very little upfront effort. https://devcenter.heroku.com/articles/deploying-python Nate On S

inline parent value

2016-12-10 Thread Nate Granatir
You should be able to customize the queryset of any form by overriding it in the init method of the form. In this case, it's a little trickier because you'll need a custom admin and custom form for the inline. I haven't been able to test this, but I think you'll need to do the following. In fo

Re: Annotate a List of Values

2016-11-18 Thread Nate Granatir
As demonstrated here: https://docs.djangoproject.com/en/1.10/topics/db/examples/many_to_many/ If you have a ManyToMany relationship set up in your models, say: class SerialNumber(models.Model): serial = models.CharField(max_length=50) class Item(models.Model): item_name = models.CharFi

Re: SQLAchemy

2016-11-04 Thread Nate Granatir
Yes, why are you using SQLAlchemy instead of Django's built-in ORM? I don't see any reason to even attempt this unless you need to perform operations outside the context of Django. On Wednesday, November 2, 2016 at 2:09:18 AM UTC-5, pradam.programming wrote: > > hi, > I am new to SqlAchemy.My

Re: Negative User ID's

2016-11-04 Thread Nate Granatir
what you're actually trying to accomplish, whereas auto-assigning certain users, to, say, a group called "Service Accounts", is perfectly clear to anyone looking at the code. Nate On Wednesday, October 26, 2016 at 7:25:20 PM UTC-5, mic...@zanyblue.com wrote: > > Hi, > &g

Re: Newbie to Novice – Using Admin DateTime Picker in your Form

2016-09-19 Thread Nate Granatir
Just realized this thread was not necessarily about filters for the admin; in the case of using custom forms/views Django daterange filter may not be a good option. On Thursday, March 19, 2009 at 8:37:56 AM UTC-5, Paul Nema wrote: > > I've noticed many people new to Django (and sometimes also ne

Re: Newbie to Novice – Using Admin DateTime Picker in your Form

2016-09-19 Thread Nate Granatir
I just installed Django Daterange Filter 1.3.0 (https://github.com/DXist/django-daterange-filter) on a Django 1.9 project. Took a little CSS fiddling to get it to display properly with Grappelli, but other than that it worked like a charm. Nate On Thursday, March 19, 2009 at 8:37:56 AM UTC-5

Re: Django template iterating through two dictionaries/variables

2016-08-30 Thread Nate Granatir
You could also just join the dicts before passing them to the template. It looks like it's relatively straightforward (scores is just a list that contains dicts of a 'Number' and a 'score', right?) Then you could turn scores into a dict, assuming Numbers are unique: scores_new = {score['Number'

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 would

Re: How and where should I put a version number in my Django project?

2016-05-03 Thread Nate Granatir
ITLE = 'My Project v{}'.format(my_project.__version__) (Here the Grappelli plugin uses this in the headers of all its admin templates.) Nate On Tuesday, May 3, 2016 at 4:21:38 AM UTC-5, Martin Torre Castro wrote: > > I'm making a Django project consisting of several apps

Having a hard time installing Graphite on Windows 7

2014-07-12 Thread &#x27;nate dingo' via Django users
git Am I even in the ball park? Thanks Nate -- 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

Bilingual Content Creation

2014-04-23 Thread Nate
I'm making a Django site that will have Spanish and English content. I know I will be using i18n. I want users to be able to create and translate content easily from the django admin. I am wondering how I should implement this. I've looked

Re: Noobie questions about Django and Databases

2013-05-08 Thread Nate Aune
e django-dynamic-scraper: http://django-dynamic-scraper.readthedocs.org/ Nate -- 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..

Encrypting PK in URL

2012-03-06 Thread nate
I saw a thread on this previously but it does not seem to have a solution. I used this thread http://stackoverflow.com/questions/2291176/django-python-and-link-encryption as a base and created encrypt and decrypt functions for the pk. I encrypt and quote and use smart_unicode to create my url

Re: sending django email via gmail

2012-03-06 Thread nate
everything looks correct. I also use gmail and I have exactly what you have and it is working for me. The only difference I see is the order and I'm not sure if that makes a difference. My order is: EMAIL_USE_TLS EMAIL_HOST EMAIL_PORT EMAIL_HOST_USER EMAIL_HOST_PASSWORD Also are you using re

Re: Json serialization help

2011-08-16 Thread Nate
Thank you for the suggestion. I actually ended up extending Django's json serializer. Here is the code in case you or someone else needs to do something like this. from django.core.serializers.json import Serializer as JsonSerializer from django.utils.encoding import is_protected_type class Displ

Json serialization help

2011-08-14 Thread Nate
-8\n\n[{"pk": 1, "model": "MyApp.foo", "fields": {"choice_field": "db_name1"}}]' I would like to get something like: 'Content-Type: text/html; charset=utf-8\n\n[{"pk": 1, "model": "MyApp.foo", "fields

Re: Setting up EC2 for Django

2011-07-05 Thread Nate Aune
ht be Solr which we don't support yet, but you could probably connect a 3rd party Solr provider such as http://websolr.com to satisfy that requirement. Sign up for the beta at http://djangozoom.com and mention that you heard about it on this thread to get an invite. Nate -- You receiv

Re: Django News Site Resources

2011-04-08 Thread Nate Aune
You might be interested in an emerging Django-based CMS for building news sites called ArmstrongCMS. It's expected to be released in June, and you can read more about it at http://armstrongcms.org Nate -- You received this message because you are subscribed to the Google Groups "Dj

Re: framework web comparison

2011-04-07 Thread Nate Aune
-django/ Nate -- 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,

Re: Django on EC2

2011-03-20 Thread Nate Aune
https://help.ubuntu.com/community/EC2StartersGuide Nate -- 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...@google

Re: Django based Project Management software

2011-03-18 Thread Nate Aune
You may want to check out http://scrumdo.org which is a Scrum-based project management software package written in Django. There is a hosted version (http://scrumdo.com) as well. Nate -- You received this message because you are subscribed to the Google Groups "Django users" grou

Re: What is the best server for Django

2011-03-18 Thread Nate Aune
s to them? Nate On Friday, March 11, 2011 10:29:14 AM UTC-5, andreap wrote: > > Im using webfaction and its the best! > > > I have 2 question, > > 1 How can I make an online backup with webfaction? > > 2 I start to have new customers and I need a hosting to

Re: Django app and Amazon AWS (beginner)

2011-03-18 Thread Nate Aune
What do you mean by custom settings? -- 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. F

Re: Mingus vs Zinnia

2011-03-16 Thread Nate Aune
We're using Zinnia for http://djangozoom.com/blog and it's working pretty well. We wanted to embed Youtube videos and TinyMCE was stripping out the tags, so we had to override the .js to get TinyMCE to allow the iframe tags. Nate -- You received this message because you are sub

Re: Help with Apache/Nginx combo

2011-03-16 Thread Nate Aune
7;ll try to get you an invite soon! http://bit.ly/ezSkKA thanks, Nate -- 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

Re: Django app and Amazon AWS (beginner)

2011-03-16 Thread Nate Aune
to you soon. We welcome any feedback on how to make it the best hosting service for Django developers! thanks, Nate -- 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

Re: Deploying django. Please specify the steps.

2011-03-15 Thread Nate Aune
in mind. You simply point us at your code on Github, and in less than a minute we provide you with a public URL of your live running app. We take care of all the server setup and management for you, so you can get back to writing code! Sign up for the DjangoZoom beta at http://bit.ly/ezSkKA N

Re: How can I show a list of values in a text input field?

2011-02-07 Thread Nate Reed
ing the input and setting the many-to-many relation. I realize this is an unconventional way to render many-to-many relations in a form, but in this particular case that's how I wanted to allow the user to see and edit the values. Thanks, Nate On Mon, Feb 7, 2011 at 10:08 AM, Bill Freeman wro

How can I show a list of values in a text input field?

2011-02-06 Thread Nate Reed
ing the input. Is there an example of a custom widget that does something like this? Nate -- 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 fro

Re: problem loading custom template tag

2010-12-19 Thread Nate Reed
My mistake. There was a small typo. It was called __init.py__, not __init__.py. I fixed it and it works now. Thanks, Nate On Sun, Dec 19, 2010 at 9:20 PM, Nate Reed wrote: > Karen, thanks for your reply.   The module myapp/templatetags does > have an __init__.py file.  There is no __

Re: problem loading custom template tag

2010-12-19 Thread Nate Reed
Karen, thanks for your reply. The module myapp/templatetags does have an __init__.py file. There is no __init__.pyc file, though. n...@nate-desktop:~/work/django-projects/myproject/myapp$ ls templatetags/ mytags.py __init.py__ On Sun, Dec 19, 2010 at 8:59 PM, Karen Tracey wrote: > On

problem loading custom template tag

2010-12-19 Thread Nate Reed
pp/templatetags/mytags.py. n...@nate-desktop:~/work/django-projects/myproject$ ls myapp/templatetags/ mytags.py __init.py__ n...@nate-desktop:~/work/django-projects/myproject$ more myapp/templatetags/mytags.py from django import template register = template.Library() @register.simple_tag def myc

Re: Help me with render_to_response!

2010-05-26 Thread Nate
is now {{ current_date }}. {% endblock %} On May 26, 5:05 pm, Daniel Roseman wrote: > On May 26, 8:19 pm, Nate wrote: > > > I'm teaching myself django and I'm having an issue with > > render_to_response.  I am passing it a template and a dictionary. > > When I vie

Help me with render_to_response!

2010-05-26 Thread Nate
I'm teaching myself django and I'm having an issue with render_to_response. I am passing it a template and a dictionary. When I view the page on a local host, it displays the entire template, including HTML tags, instead of formatting the page according to the tags. I don't have this issue when I

django-admin.py complains about missing DJANGO_SETTINGS_MODULE

2009-07-14 Thread Nate Reed
import settings 'mysite.settings' (Is it on sys.path? Does it have syntax errors?): No module named mysite.settings What's the fix for this (short of modifying django-admin.py to add my project to the python import path)? I'm using django 1.0 (from SVN). Nate --~--~-~--~---

Re: problem with sorl-thumbnail invalid image

2009-03-22 Thread Nate Reed
No, I didn't create the image. I'm guessing you chose the "Interlaced" option, or that "Adobe Photoshop PNG" is an interlaced PNG format. I'm not that familiar with Photoshop. On Sun, Mar 22, 2009 at 4:22 PM, DLitgo wrote: > > Nate, > > I had a s

Re: problem with sorl-thumbnail invalid image

2009-03-21 Thread Nate Reed
As a workaround I used Gimp to convert this image to a compatible format before uploading it. Hopefully my users won't mind this limitation. It does seem a rather glaring omission from PIL, though, doesn't it? Nate On Sat, Mar 21, 2009 at 5:38 PM, Malcolm Tredinnick < malc...@poi

Re: problem with sorl-thumbnail invalid image

2009-03-21 Thread Nate Reed
cannot read interlaced PNG files Is there some way I can work with interlaced PNG's in PIL? On Sat, Mar 21, 2009 at 5:29 PM, Nate Reed wrote: > I have a model that uses sorl-thumbnail.ImageWithThumbnailsField: > > class Vendor(models.Model): > url = models.URLField()

problem with sorl-thumbnail invalid image

2009-03-21 Thread Nate Reed
ormat/size/mode for one that works fine with image uploading: PNG (420, 420) RGBA Any ideas? How can I find where this error is originating? Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django user

Re: customizing admin interface: showing descriptive names for objects

2009-03-19 Thread Nate Reed
On Thu, Mar 19, 2009 at 4:29 PM, Alex Gaynor wrote: > > > On Thu, Mar 19, 2009 at 7:21 PM, Nate Reed wrote: > >> I'm working on an admin interface for my app, and wondering how to >> customize what gets displayed. >> >> Under Home->MyModels->MyM

customizing admin interface: showing descriptive names for objects

2009-03-19 Thread Nate Reed
t of: MyModel object MyModel object etc I'd like it to make it show MyModel.name instead. How is this changed? Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to th

Previous form in form wizard

2009-03-05 Thread Nate Soares
Is there an easy way to add a "previous step" button to a form wizard page? Thanks, -Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send e

Can QuerySet methods combine filters with an "OR" conjunction?

2009-02-21 Thread Nate Morse
Before I go down the road of writing SQL by hand or using QuerySet.extra(...) [ don't know much about that yet:], I thought I would ask if there is a way to achieve (within the QuerySet methods) something like ...WHERE field_a = 'abc' OR field_b = '123' ...? It seems if I do: rs = mymodel.filter(

need to override validation logic

2008-12-03 Thread Nate
n progress. Is it ready in 1.0? What is the suggested approach for what I want to accomplish? Thanks, Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: Many-To-Many with extra fields

2008-09-23 Thread Nate Thelen
Yeah, that would work, too. I was thinking more like if you got the ringo like this: ringo = Person.objects.select_related(depth=2).get(name='ringo') how could you get the data without having to make another DB call. Ideas? Thanks, Nate On Sep 23, 2:04 pm, akonsu <[EMAIL PROT

Re: Many-To-Many with extra fields

2008-09-23 Thread Nate Thelen
_set.all() print( Membership.objects.get(person=ringo, group=group).date_joined ) That seems very DB inefficient. Nate On Sep 19, 9:43 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Sat, Sep 20, 2008 at 8:37 AM, Nate Thelen <[EMAIL PROTECTED]> wro

Many-To-Many with extra fields

2008-09-19 Thread Nate Thelen
t, how do I find the "date_joined" for each of the "Person" objects. I have looked through the other sections of the documentation, searched this group, and searched via Google, but couldn't find the info. Thanks, Nate --~--~-~--~~~---~--~~ You receiv

OneToOneField value not selected in default html form

2008-09-10 Thread nate
Hi, The values of OneToOneFields don't appear to remain selected after creation or update in default forms (such as those used by the admin interface). I Looked for a bug report but didnt see one. Has anyone else run into this? Take the following set of models: class Thing1(models.Model): n

Protecting static files

2008-04-17 Thread Nate
site will be for a local photographer who probably won't be getting millions of hits per day, but the insecurity is what I'm worried about. I read django's way of protecting static files, but that only limits it to a group of people and not an individu

Re: Django Deployment Headache (Apache Permissions?)

2007-06-06 Thread Nate Straz
> drwxr-xr-x 2 thebest bestx 4096 May 30 13:55 media > > > > > drwxr-xr-x 2 thebest bestx 4096 Jun 6 15:30 xapp > > > > > drwxr-xr-x 2 thebest bestx 4096 Jun 6 15:30 xapp I see three xapp directories in this one, that doesn't seem right. I didn't see any

Re: migrating 400 images

2007-05-07 Thread Nate Straz
es, I'm sure there is, but one that you recommend? There is one in the Python Standard Library[1], but I haven't used it. Perhaps someone else on the list has. Nate [1] http://docs.python.org/lib/module-HTMLParser.html --~--~-~--~~~---~--~~ You received th

Re: migrating 400 images

2007-05-05 Thread Nate Straz
hatever needed to be migrated. When I detected a problem I would use Python's code.interact function to get a shell at that point in my script to help deal with any unexpected migration issues. http://refried.org/viewvc/viewvc.py/refriedorg/blog/migrate.py?view=markup Nate --~--~

Re: Navigating the Documentation

2007-04-17 Thread Nate Finch
s the thing I'd like to see is a complete tree view of all documentation pages. Anyway, thanks again. -Nate On Apr 16, 8:13 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On 4/17/07, Nate Finch <[EMAIL PROTECTED]> wrote: > > > > > No breadcrumb

Navigating the Documentation

2007-04-16 Thread Nate Finch
ing of links to each documentation page and a short description of what it contains would be a godsend. -Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this gro

Re: where does the old manipulator go?

2007-01-04 Thread Nate Straz
use it? Yes it does. I just converted my comments app[1] from oldforms to newforms. You might find it useful to look at the diff. http://refried.org/viewvc/viewvc.py?view=rev&revision=150 Nate [1] It's a direct copy of freecomments hacked to make my migration from COREBl

Re: Diamanda Wiki and MyghtyBoard Forum on SVN now

2006-09-08 Thread Nate Straz
On Thu, Sep 07, 2006 at 11:36:46PM +0800, limodou wrote: > On 9/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I don't want to make another mediawiki which requires to learn yet > > another markup language and needs a horde of wikipedians to controll > > it. > > So which text format do yo

Re: Creating graphs in Django application

2006-09-07 Thread Nate Straz
On Thu, Sep 07, 2006 at 01:39:30AM -0700, Devraj wrote: > I am attempting to create graphs in my Django app.to provide reporting > features. Are there any libraries available to do this in Python or > Django? PyX, http://pyx.sourceforge.n

Re: get_next_by_FIELD and alternate managers

2006-09-03 Thread Nate Straz
this inside a template? I ended up defining new functions on the Entry model to keep calling get_next_by_pub_date until it got to a published entry. Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

get_next_by_FIELD and alternate managers

2006-09-03 Thread nate-django
to make it easier to pick out only published entries. My problem is that my older/newer navigation that uses entry.get_next_by_pub_date also picks up unpublished entries. Is there a way to tell get_next_by_pub_date to use the manager "published" instead

Re: Advanced Admin Customization

2006-09-01 Thread nate-django
k in db/models/fields/__init__.py you'll find that this is used in EmailField which subclasses CharField. class EmailField(CharField): ... def get_internal_type(self): return "CharField" Now I'll have to try creating some custom fields myself. :) Nate --~--~---

Re: My blog is now Django -- source is available

2006-08-22 Thread nate-django
gt; > could use django.views.generic.list_detail.object_detail I do. I probably can remove all of those views. Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

My blog is now Django -- source is available

2006-08-22 Thread nate-django
form - More blog centric admin interface - show unapproved comments - Make retagging entries easy - Ability to preview the entry while editting - Photo manager and gallery Nate P.S. I also have Jacob's sudoku app ported to magic-removal in

Re: Django covered in podcast with Guido

2006-08-07 Thread nate-django
system and made reference to the article on Django's speed vs RoR. I was pleased that he accurately recalled how Django got started. It was a great podcast. I recommend listening to it if you haven't already. There were some interesting insights on Python design, past and future. N

Re: when is 1 != 1? (according to 'ifequal' in template)

2006-08-07 Thread nate-django
se. Has water stopped being > wet? Is one a string and the other an integer? Python 2.4.2 (#1, Feb 12 2006, 03:45:41) [GCC 4.1.0 20060210 (Red Hat 4.1.0-0.24)] on linux2 Type "help", "copyright", "credits" or "license" for more infor

Re: Managing database privileges

2006-07-05 Thread nate-django
Thing To Do(tm). Unfortunately I don't find anything in the documentation, wiki, or archives to support that idea. Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Managing database privileges

2006-07-04 Thread nate-django
o you all access that database with the same user as created the database? Do you grant access to each table that the web server needs to query? Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django u

Re: Wiki or Blogs done with django

2006-05-29 Thread nate-django
I don't want it edittable, but I want it displayed in the admin interface. I started hacking on this pre-magic removal and I have since removed most of the magic from my code. I always admired Zope, but Django seems a lot easier to get a long with. Nate --~--~-~--~~---

Re: hack for file-browser

2006-05-02 Thread nate-django
On Tue, May 02, 2006 at 02:47:33PM +0200, va:patrick.kranzlmueller wrote: > i?m working on a file-browser for/with the django-admin. > screenshots are here: > http://www.vonautomatisch.at/django/ftp/ Wow, that looks great! I would love to use that in my ap

Manipulators and non-editable fields

2006-04-21 Thread nate-django
'] = datetime.datetime.now() new_data['ipaddr'] = request.META.get('REMOTE_ADDR') #manipulator.do_html2python(new_data) nc = manipulator.save(new_data) Nate --~--~-~--~~~---~--~~ You received this message because you are

Re: ImageField nightmares

2006-03-25 Thread nate-django
that the field groups were recently wrapped and now the templates can't find the error messages for edit_inline fields anymore. Yeah, I should file a bug on it. ;) Nate --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou

Re: Advice on developing with django for a team of 10+

2006-03-24 Thread nate-django
a "global-ignores" option. Just add "*.pyc" to this space separated list. Unfortunately this is a per-user solution, but you could add this to the user skeleton or just tell everyone to adjust this setting. Nate --~--~-~--~~~---~--~~ You recei

Re: mod_python & devserver & apache restart

2006-02-21 Thread nate-django
server hostname:port It defaults to 127.0.0.1. Nate --~--~-~--~~~---~--~~ 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

Re: Modelling Help

2005-08-15 Thread Nate Drake
Adrian, Thanks a lot! I appreciate the fast response. One other question. Is there a way to make the admin app render a text field as a password field? Thanks again! Nate

Modelling Help

2005-08-15 Thread Nate Drake
he items in the drop-down to only include the two teams that played in that specific game? 3) When creating a new Game via the admin interface, the drop-downs for the two teams are both labeled "Team". Is there a way to change the labels to "Home Team" and "Away Team&quo