up vote 1 down vote favorite
1
share [g+] share [fb]

I would like to modify an admin template in Django.

 % cat /Library/Python/2.5/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html 
<fieldset class="module aligned {{ fieldset.classes }}">
  {% if fieldset.name %}<h2>{{ fieldset.name }}</h2>{% endif %}
  {% if fieldset.description %}<div class="description">{{ fieldset.description|safe }}</div>{% endif %}
  {% for line in fieldset %}
      <div class="form-row{% if line.errors %} errors{% endif %} {% for field in line %}{{ field.field.name }} {% endfor %} ">
      {{ line.errors }}
      {% for field in line %}
      <div{% if not line.fields|length_is:"1" %} class="field-box"{% endif %}>
          {% if field.is_checkbox %}
              {{ field.field }}{{ field.label_tag }}
          {% else %}
              {{ field.label_tag }}{{ field.field }}
          {% endif %}
          {% if field.field.field.help_text %}<p class="help">{{ field.field.field.help_text|safe }}</p>{% endif %}
      </div>
      {% endfor %}
      </div>
  {% endfor %}
</fieldset>

What kind of object is field, and more specifically how would I get the name of a field?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

field is an instance of AdminField and field.field is an instance of BoundField, so you can reference the fields name with:

{{ field.field.name }}

Once as you start to dive deep into admin customisation, its the only place the documentation is really lacking. that being said, the code is well written and easy to understand if you take the time to research it, IMHO.

There is not many files so take an evening and read through them. In your case, I would start with:

link|improve this answer
feedback

check here if you need to override it at all. a lot is configureable.

BTW, I'd like to give you an advice: Do not overwrite / change, what you do not understand. first make yourself understand it

link|improve this answer
feedback

Have you done your research?

After that, I would start poring over the python code that invokes your template. I would imagine that field is from the forms system

Field A class that is responsible for doing validation, e.g. an EmailField that makes sure its data is a valid e-mail address.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.