Opened 16 years ago

Closed 16 years ago

#9263 closed (worksforme)

Missing bold lines in Tutorial #2

Reported by: a2 Owned by: nobody
Component: Documentation Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

on this page: http://docs.djangoproject.com/en/dev/intro/tutorial02/#intro-tutorial02

under the first bit of code [green box] I see: "(The bold lines are the ones that needed to be uncommented.)"

But using FireFox 2.0.0.17 on XP I don't seem to see'em

Change History (1)

comment:1 by Karen Tracey, 16 years ago

Resolution: worksforme
Status: newclosed

I don't have the exact combination you do, but they're bold for me on Firefox 2.0.0.17 on Ubuntu and Firefox 3.03 on Windows. Do a View->Page Source and you should see three lines enclosed in <strong>:

# Uncomment the next two lines to enable the admin:
<strong>from django.contrib import admin</strong>
<strong>admin.autodiscover()</strong>

urlpatterns = patterns('',
    # Example:
    # (r'^mysite/', include('mysite.foo.urls')),

    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
    # to INSTALLED_APPS to enable admin documentation:
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    <strong>(r'^admin/(.*)', admin.site.root),</strong>
)

Perhaps you've got an override for what <strong> does in your userChrome.css file?

Note: See TracTickets for help on using tickets.
Back to Top