- [Django]-Count frequency of values in pandas DataFrame column
- [Django]-Access-Control-Allow-Origin in Django app
- [Django]-Python_2_unicode_compatible error
6👍
Answer in several parts:
-
for something similar to Django admin, it all depends on what you plan to do with it. If you want to build your site around it, scaffolding is good. However, even if you chose Django, don’t build your site around admin. It is not meant for this (it is possible, but after you’ll have very little flexibility), it is just made for being an admin interface.
-
This being said, if you need to work fast, and have no knowledge in Python nor in Ruby, I would go for Python – Django. Rails can be awfully productive, but the learning curve is much steeper than Django’s. And Ruby’s syntax is very fancy, but Python’s is neater in my opinion (I know some will disagree on this!)
- [Django]-Large Django application layout
- [Django]-Open the file in universal-newline mode using the CSV Django module
- [Django]-In plain English, what are Django generic views?
2👍
Here are some popular choices of admin interface gems for Rails.
More choices at The Ruby Toolbox. ActiveScaffold is the most popular according to Ruby Toolbox, but it seems like it’s not compatible with Rails 3.0.
- [Django]-Django – {% csrf_token %} was used in a template, but the context did not provide the value
- [Django]-Elegantly handle site-specific settings/configuration in svn/hg/git/etc?
- [Django]-How do I include image files in Django templates?
2👍
I really enjoyed using https://github.com/pilu/web-app-theme. Simple, ready to use, can spit out both erb and haml.
- [Django]-How to use Query Strings for filtering Querysets in Django?
- [Django]-Where should signal handlers live in a django project?
- [Django]-Get request.session from a class-based generic view
1👍
Rails has a scaffold generator, which is neat to quickly sketch things out, but it has little by way of an Admin generator that’s as nice as the one Django provides. That being said, it is quite easy to do most of those things fairly quickly with Rails. Take a look at the Rails tutorial. I have found it to be the fastest way to learn rails at the moment really. And the link I have included for the scaffold generator should get you using the code generation tool in rails.
- [Django]-Django returning HTTP 301?
- [Django]-RetrieveAPIView without lookup field?
- [Django]-Django serializer for one object
- [Django]-Django template how to look up a dictionary value with a variable
- [Django]-How to use the href attribute in django templates
- [Django]-Foreign keys in django admin list display
0👍
There’s a really fast admin panel type thing that’s now available — The Brick. This one auto-creates its own models / controllers / views when any existing ones are not found, and does this entirely on-the-fly in RAM.
Not as configurable as other panels, but it’s lean and works with all manner of Rails associations — of course the common belongs_to and has_many, but also polymorphics and single table inheritance.
- [Django]-How to run own daemon processes with Django?
- [Django]-How can I make my model fields optional in Django?
- [Django]-How do I import the Django DoesNotExist exception?