(self, article)
| 218 | self._articles = [] |
| 219 | |
| 220 | def add_article(self, article): |
| 221 | if len(self._articles) >= 10: |
| 222 | raise AttributeError("Can't add more than 10 articles in an ArticleReply") |
| 223 | else: |
| 224 | self._articles.append(article) |
| 225 | |
| 226 | def render(self): |
| 227 | items = [] |