Hi,

I am currently creating an application using Pyramid. In order to save time,
I am interested in using pyramid_formalchemy to set up the admin interface
for CRUD of the underlying objects.

I have read the documentation (
http://docs.formalchemy.org/pyramid_formalchemy/) but it isn't entirely
clear to me.

Steps I have taken so far:

1. easy_install pyramid_formalchemy
2. paster create -t pyramid_fa myappname (provided I do this from the
correct directory, files such as faforms.py/fainit.py appear in my
application package directory)
3. touch forms.py ('create an empty forms.py module' - I did this in the
application package, eg Myapp/myapp)
4. Added the following lines in __init__.py:

    # pyramid_formalchemy's configuration
    config.include('pyramid_formalchemy')
    # register an admin UI
    config.formalchemy_admin('admin', package='myappname')

With this done, I open my application on http://localhost:port/admin.... and
nothing happens. Well not nothing, what I actually see is my login/logged in
page.

Could anybody point me towards which steps I am missing?

Also, I'd appreciate any thoughts on formalchemy in general. Is it worth
persevering with or should I be doing it myself using deform/simpleform?

Thanks,
Ben

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en.

Reply via email to