Skip to content

Commit 7d79e73

Browse files
committed
fix rendering issue on integerfield page
1 parent 19337ce commit 7d79e73

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

content/pages/examples/django/django-code-examples.markdown

+8
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@ Example code found in the AuditLog project:
3737

3838
* [django.apps.config AppConfig](/django-apps-config-appconfig-examples.html)
3939
* [django.contrib.admin.filters SimpleListFilter](/django-contrib-admin-filters-simplelistfilter-examples.html)
40+
* [django.contrib.admin.sites.register](/django-contrib-admin-sites-register-examples.html)
4041
* [django.db.models DateField](/django-db-models-datefield-examples.html)
4142
* [django.db.models DateTimeField](/django-db-models-datetimefield-examples.html)
43+
* [django.db.models IntegerField](/django-db-models-integerfield-examples.html)
4244
* [django.utils.html format_html](/django-utils-html-format-html-examples.html)
4345

4446

@@ -53,6 +55,7 @@ dccnsys is shown on the following code example pages:
5355
* [django.contrib.auth get_user_model](/django-contrib-auth-get-user-model-examples.html)
5456
* [django.contrib.auth.decorators login_required](/django-contrib-auth-decorators-login-required-examples.html)
5557
* [django.db.models DateField](/django-db-models-datefield-examples.html)
58+
* [django.db.models IntegerField](/django-db-models-integerfield-examples.html)
5659
* [django.urls.path](/django-urls-path-examples.html)
5760

5861

@@ -67,6 +70,7 @@ Code used for examples from the django-allauth project:
6770

6871
* [django.apps.config AppConfig](/django-apps-config-appconfig-examples.html)
6972
* [django.conf.urls.url](/django-conf-urls-url-examples.html)
73+
* [django.contrib.admin.sites.register](/django-contrib-admin-sites-register-examples.html)
7074
* [django.forms](/django-forms-examples.html)
7175

7276

@@ -128,6 +132,7 @@ for use with Django web apps that is open sourced under the
128132
Example code from django-cms:
129133

130134
* [django.conf.urls url](/django-conf-urls-url-examples.html)
135+
* [django.contrib.admin.sites.register](/django-contrib-admin-sites-register-examples.html)
131136
* [django.db OperationalError](/django-db-operationalerror-examples.html)
132137
* [django.db.models Model](/django-db-models-model-examples.html)
133138
* [django.utils timezone](/django-utils-timezone-examples.html)
@@ -186,6 +191,7 @@ Code from django-filer can be found on these pages:
186191

187192
* [django.conf settings](/django-conf-settings-examples.html)
188193
* [django.contrib.admin](/django-contrib-admin-examples.html)
194+
* [django.contrib.admin.sites.register](/django-contrib-admin-sites-register-examples.html)
189195
* [django.core.management.base BaseCommand](/django-core-management-base-basecommand-examples.html)
190196

191197

@@ -407,6 +413,8 @@ under the
407413
Example code from wagtail shown on these pages:
408414

409415
* [django.conf.urls url](/django-conf-urls-url-examples.html)
416+
* [django.contrib.admin.sites.register](/django-contrib-admin-sites-register-examples.html)
410417
* [django.db.models DateField](/django-db-models-datefield-examples.html)
418+
* [django.db.models IntegerField](/django-db-models-integerfield-examples.html)
411419
* [django.http Http404](/django-http-http404-examples.html)
412420

content/pages/examples/django/django-db-models-integerfield.markdown

+1
Original file line numberDiff line numberDiff line change
@@ -507,3 +507,4 @@ class SiteManager(models.Manager):
507507
)
508508

509509
## ... source file continues without further TextField examples ...
510+
```

theme/templates/table-of-contents.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,11 @@ <h4 class="bp"><a href="/django-apps-config-appconfig-examples.html">django.apps
235235
<h4 class="bp"><a href="/django-conf-settings-examples.html">django.conf.settings</a></h4>
236236
<h4 class="bp"><a href="/django-conf-urls-url-examples.html">django.conf.urls.url</a></h4>
237237
<h4 class="bp"><a href="/django-contrib-admin-examples.html">django.contrib.admin</a></h4>
238+
<h4 class="bp"><a href="/django-contrib-admin-filters-simplelistfilter-examples.html">django.contrib.admin.filters SimpleListFilter</a></h4>
239+
<h4 class="bp"><a href="/django-contrib-admin-sites-register-examples.html">django.contrib.admin.sites register</a></h4>
238240
<h4 class="bp"><a href="/django-contrib-auth-get-user-model-examples.html">django.contrib.auth get_user_model</a></h4>
239241
<h4 class="bp"><a href="/django-contrib-auth-decorators-login-required-examples.html">django.contrib.auth.decorators login_required</a></h4>
240242
<h4 class="bp"><a href="/django-contrib-auth-hashers-make-password-examples.html">django.contrib.auth.hashers make_password</a></h4>
241-
<h4 class="bp"><a href="/django-contrib-admin-filters-simplelistfilter-examples.html">django.contrib.admin.filters SimpleListFilter</a></h4>
242243
<h4 class="bp"><a href="/django-core-mail-send-mail-examples.html">django.core.mail.send_mail</a></h4>
243244
<h4 class="bp"><a href="/django-core-mail-messages-emailmessage-examples.html">django.core.mail.messages EmailMessage</a></h4>
244245
<h4 class="bp"><a href="/django-core-management-base-basecommand-examples.html">django.core.management.base BaseCommand</a></h4>

0 commit comments

Comments
 (0)