Changeset 3025
- Timestamp:
- 05/31/06 11:13:08 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
djangoproject.com/django_website/apps/docs/parts/build_documentation.py
r2966 r3025 8 8 9 9 from django.conf import settings 10 from django.core import meta, template 10 from django import template 11 from django.db import models 11 12 from docutils import nodes, utils 12 13 from docutils.core import publish_parts … … 80 81 81 82 for model_name in runtests.get_test_models(): 82 mod = m eta.get_app(model_name)83 mod = models.get_app(model_name) 83 84 84 85 out_file = os.path.join(settings.DJANGO_DOCUMENT_ROOT_PATH, 'model_' + model_name + '.html')
