示例#1
0
    def get_initial(self):
        initial = super(TranslateArticle, self).get_initial().copy()
        article_id = self.kwargs.get('article_id')

        article = get_object_or_404(Article, id=article_id)
        data = ArticleService.get_translation_data(article, self.request.user)

        initial.update(data)
        return initial