cheers - the validation of blank text fields is fixed, however the
repeating results are still there - I'll post that as a seperate issue
though.
Luke Skibinski Holt
It seems my problem with the repeating fields is a known bug with
one-to-one relationships (http://code.djangoproject.com/ticket/1245)
Luke Skibinski Holt
Thanks! It helped a lot. I only had to write small bridging Django tag
to use his Rails Helpers. It saved a lot of time.
-Louis
Hi, everyone!
I have an urlconf file in my app with a convinient prefix to my view
functions:
urlpatterns = patterns('project.apps.app_name.views',
(r'$', 'index', None),
...
)
Now I want to use generic views in the same app and the prefix to my
views gets in the way being added before 'd
On 1/21/06, Maniac <[EMAIL PROTECTED]> wrote:
> I have an urlconf file in my app with a convinient prefix to my view
> functions:
>
> urlpatterns = patterns('project.apps.app_name.views',
> (r'$', 'index', None),
> ...
> )
>
> Now I want to use generic views in the same app and the prefix to m
Just add (concatenate? append?) another urlpatterns:
urlpatterns = patterns('project.apps.some_app.views',
(r'^some_url/$', 'index'),
)
urlpatterns += patterns('project.apps.another_app.views',
(r'^another_url/$', 'index'),
)
This is from my newest project:
urlpatterns = patterns('',
There's now a ticket [1] about manipulators and default values. See
there for links to more discussion.
[1] http://code.djangoproject.com/ticket/1207
Julio Nobrega wrote:
Just add (concatenate? append?) another urlpatterns:
urlpatterns = patterns('project.apps.some_app.views',
(r'^some_url/$', 'index'),
)
urlpatterns += patterns('project.apps.another_app.views',
(r'^another_url/$', 'index'),
)
Thanks! I was actually thinking of this m
Ok, the patch is away [http://code.djangoproject.com/ticket/1258]. :-)
- Cheng Zhang
On Jan 21, 2006, at 7:12 AM, Jeremy Dunck wrote:
On 1/20/06, Cheng Zhang <[EMAIL PROTECTED]> wrote:
Adapter class over adodbapi where supported, falling back to
pymssql?
I think they (ado_mssql and pymssql) are meant for different OS
platforms, in that ado_mssql is for Django running on W
i am trying to make a table template similar to what i find for inline
editable modules in the admin interface.
I want to send a list of (same class) objects and fields of those
objects and then get a row for each object with a col for each desired
field. I thought this would be easy because it
can you share your code? i'd like to take a peek. :P
12 matches
Mail list logo