If you want to add an fckeditor for every vLargeTextField (the input class used by models.TextField) you can use this javascript.
you can load that in all admin pages overriding templates/admin/base_site.html with this:
{% extends "admin/base.html" %}
{% load i18n %}
{% block title %}{{ title }} | {% trans "Administrative Area" %}{% endblock %}
{% block branding %}
<h1 id="site-name">{% trans "Administrative Area" %}</h1>
{% endblock %}
{% block nav-global %}{% endblock %}
{% block extrahead %}{{ block.super }}
<script src="{{media_url}}js/jquery.js" type="text/javascript"></script>
<script src="{{media_url}}fckeditor/fckeditor.js" type="text/javascript"></script>
<script src="{{media_url}}fckeditor/custom/vTextField.js" type="text/javascript"></script>
{% endblock %}
- admin
- textfield
- rich-text-editor
- fckeditor
- vlargtextfield