6
votes
4answers
2k views
Replace textarea with rich text editor in Django Admin?
I would like to know the best way to replace a standard textarea field with a rich text editor in Django Admin?
4
votes
2answers
117 views
Elevating to admin rights in Mac application
I am making a simple application that lets you quickly enter a shell command to be run.
It works perfectly, however there is the problem of sudo commands.
Currently, it detects a sudo command, and …
4
votes
2answers
171 views
Remove the “Add” functionality in Django admin
Is there a way to remove the "Add" functionality on the Django admin site? For certain entities, I only want the Django admin to be able to view them or change existing ones, but not add new ones.
4
votes
4answers
3k views
SVN admin management GUI tool
any GUI Admin / Management tool for SVN repository on windows? please suggest. thanks in advance
4
votes
1answer
1k views
Why won’t Django 1.0 admin application work?
I've just started playing with Django and am loosely following the tutorial with my own set of basic requirements. The models I've sketched out so far are a lot more comprehensive than the tutorial, …
3
votes
3answers
261 views
WMD in Django Admin?
I know how to use WMD and other such javascript editors in regular django forms using widget=. However, how do I use WMD for text fields in the Django admin? On top of that, how do I use it for the …
3
votes
1answer
168 views
Django: reverse function fails with an exception
I'm following the Django tutorial and got stuck with an error at part 4 of the tutorial. I got to the part where I'm writing the vote view, which uses reverse to redirect to another view. For some …
3
votes
1answer
319 views
Add row to inlines dynamically in django admin
I have the following defined:
class AnswerChoiceInline(admin.TabularInline):
model = AnswerChoice
# extra = 0
class QuestionAdmin(admin.ModelAdmin):
inlines = [AnswerChoiceInline]
…
3
votes
4answers
3k views
Backend Administration in rails
I'd like to build a real quick and dirty administrative backend for a rails app I have been attached to at the last minute. I've looked at activescaffold and streamlined and think they are both very …
2
votes
1answer
20 views
How to implement custom admin actions in non-custom-models in Django?
I'd like to build a custom admin action into a model defined by Django. Let's say I wanted to add the action "Activate selected User(s)" on django.contrib.auth.models.User in the Django admin …
2
votes
2answers
77 views
How to make admin site safe ?
Hi guys,
very simple question:
I have admin site in my web project. So, how can I make it safe?
What I have until now:
Database handled user with userID and userlevel
on the pageload of the admin …
2
votes
4answers
601 views
Django: serving ADMIN media files
Hi all,
I've been successfully serving media files for the normal MEDIA files, but when I tried serving admin media files, I failed. please kindly help me locating the problem, as I've tried to …
2
votes
1answer
43 views
django db writes not happening immediately when running in admin site
I have a snippet of code like this in a Django application
def update_account(user_account,add_widget_count):
user_account.add_widgets(add_widget_count)
user_account.save()
…
2
votes
2answers
156 views
Ordering fields inside Inlines in Django Admin
I have a ManyToMany relationship setup with intermediary objects in Django. Any ideas how I can order the < select >s in the Inlines that show up for the intermediary objects?
2
votes
6answers
2k views
Django Apache/mod_python Admin CSS not appearing with admin tables
Hello,
I have Windows XP/Django/apache/mod_python working on localhost. All parts are working with the exception of the admin CSS not rendering. The admin works, but no html formatting. I've made …
