Giter VIP home page Giter VIP logo

Comments (4)

hamishwillee avatar hamishwillee commented on June 23, 2024

Thanks. I plan on looking at Django example again in the next week or so. Assigned to me.

from django-locallibrary-tutorial.

hamishwillee avatar hamishwillee commented on June 23, 2024

@nuttaa Is this your own code, or the code from this repo? Can you reproduce this after following the instructions here: https://github.com/mdn/django-locallibrary-tutorial#quick-start

If so, can you please explain exactly how you got the above error. The admin is rock solid for me.

My guess is that this is for your own code and that BookInstance.borrower is not defined.

from django-locallibrary-tutorial.

pwhau avatar pwhau commented on June 23, 2024

Hello @nuttaa I got same ERRORS before when I followed the Django Tutorial Part 4


The first error we should put below code (in models.py not admin.py)

class Book(models.Model):
.....
.....
.....
def display_genre(self):

"""Create a string for the Genre. This is required to display genre in Admin."""
return ', '.join(genre.name for genre in self.genre.all()[:3])

display_genre.short_description = 'Genre'


The second error is the Tutorial didn't asked for 'borrower' so we could delete the 'borrower' string

in the end probably need to check all admin.site.register() or @admin.register()

If it still can't solve your problems, I apologize.

from django-locallibrary-tutorial.

hamishwillee avatar hamishwillee commented on June 23, 2024

@nuttaa Pwhau is correct. The first error indicates that display_genre is being called but is not defined. The function is mention in the documentation, so I suspect you just missed this line.

Further for the second problem this is reporting that in this line the "borrower" field is not defined

@admin.register(BookInstance)
class BookInstanceAdmin(admin.ModelAdmin):
    ...
    list_display = ('book', 'status', 'borrower', 'due_back', 'id')

Basically you need a line like this in your model:

class BookInstance(models.Model):
    ...
    borrower = models.ForeignKey(User, on_delete=models.SET_NULL, null=True, blank=True)

The need for adding this line is covered in the user authentication section: https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/Authentication

I think this is resolved. Thanks for your help @pwhau !

from django-locallibrary-tutorial.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.