SYMBOL INDEX (29 symbols across 11 files) FILE: diary/admin.py class NoteAdmin (line 5) | class NoteAdmin(admin.ModelAdmin): FILE: diary/apps.py class DiaryConfig (line 4) | class DiaryConfig(AppConfig): FILE: diary/migrations/0001_initial.py class Migration (line 7) | class Migration(migrations.Migration): FILE: diary/models.py class Note (line 5) | class Note(models.Model): method __str__ (line 10) | def __str__(self): FILE: diary/tests/conftest.py function note (line 6) | def note(db): function note2 (line 11) | def note2(note): FILE: diary/tests/test_views.py function test_get_next_or_none__last (line 9) | def test_get_next_or_none__last(note): function test_get_next_or_none__next_exists (line 13) | def test_get_next_or_none__next_exists(note2): function test_start_page__invalid (line 17) | def test_start_page__invalid(client): function test_start_page__valid (line 29) | def test_start_page__valid(client): FILE: diary/utils.py class HttpResponseUnprocessableEntity (line 4) | class HttpResponseUnprocessableEntity(HttpResponse): method __init__ (line 7) | def __init__(self, content=b'', description=None, **kwargs): class HttpResponseCreated (line 15) | class HttpResponseCreated(HttpResponse): method __init__ (line 18) | def __init__(self, content=b'', pk=None, **kwargs): FILE: diary/views/common.py function page (line 5) | def page(content): FILE: diary/views/note.py class NoteCreateForm (line 12) | class NoteCreateForm(ModelForm): class Meta (line 13) | class Meta: function note_add_html (line 21) | def note_add_html(): function note_form_html (line 26) | def note_form_html(form): function note_html (line 38) | def note_html(note): function note_hx (line 50) | def note_hx(request, note_id): function create_note_hxpost (line 56) | def create_note_hxpost(request): function note_and_next_html (line 64) | def note_and_next_html(note): function get_next_or_none (line 78) | def get_next_or_none(note): function note_and_next_hx (line 91) | def note_and_next_hx(request, note_id): FILE: diary/views/start.py function start_page (line 7) | def start_page(request): function first_note (line 19) | def first_note(): FILE: mysite/manage.py function main (line 7) | def main():