diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/posts/build.py | 1 | ||||
-rw-r--r-- | app/posts/templates/posts/fieldnote_list.html | 2 | ||||
-rw-r--r-- | app/posts/urls/field_note_urls.py | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/app/posts/build.py b/app/posts/build.py index 80d5a11..73c52e2 100644 --- a/app/posts/build.py +++ b/app/posts/build.py @@ -43,7 +43,6 @@ def guide_builder(): j.build() - class BuildFieldNotes(BuildNew): def get_model_queryset(self): diff --git a/app/posts/templates/posts/fieldnote_list.html b/app/posts/templates/posts/fieldnote_list.html index fc15812..06d134e 100644 --- a/app/posts/templates/posts/fieldnote_list.html +++ b/app/posts/templates/posts/fieldnote_list.html @@ -25,7 +25,7 @@ <h2>Field Notes</h2> <p>Quick notes, sketches, and images from the road. This is the semi-organized brain dump that comes before the more organized <a href="/jrnl/" title="read the journal">journal entries</a>. If I used social media this is the stuff I'd probably put there, but I prefer to put it here, even if it means a lot fewer people read it.</p> </div> - {% autopaginate object_list 30 %} + {% autopaginate object_list 24 %} <ul class="fancy-archive-list">{% for object in object_list %} <li class="h-entry hentry" itemscope itemType="http://schema.org/Article"> <a href="{{object.get_absolute_url}}" class="u-url"> diff --git a/app/posts/urls/field_note_urls.py b/app/posts/urls/field_note_urls.py index bf16c50..7352b0e 100644 --- a/app/posts/urls/field_note_urls.py +++ b/app/posts/urls/field_note_urls.py @@ -17,7 +17,7 @@ urlpatterns = [ name="list" ), path( - r'<int:page>/', + r'<page>/', views.FieldNoteListView.as_view(), name="list" ), |