We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some authors have taglines at the bottom such as
NAME PO '18 will be writing a bi-weekly film column that focuses on recently released films, buzz about movies and other related happenings.
A hacky way to add missing authors who have these taglines might look something like
for article in Article.objects.filter(content__contains="NAME").all(): article.authors.add(author); article.save();
This has the danger that their NAME might be mentioned an article that they didn't write.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some authors have taglines at the bottom such as
NAME PO '18 will be writing a bi-weekly film column that focuses on recently released films, buzz about movies and other related happenings.
A hacky way to add missing authors who have these taglines might look something like
This has the danger that their NAME might be mentioned an article that they didn't write.
The text was updated successfully, but these errors were encountered: