I have developed a table, using django-tables2 which shows records of a model. The last column of this table, is an "edit button" which leads user to the "edit page" of its row record.
What I want is that the user can see the edit column only if she has permission to edit the model!
Also I need to mention that currently I'm using SingleTableView to develop table view.