diff --git a/news/templates/news/article_detail.html b/news/templates/news/article_detail.html index bc9d291..425190f 100644 --- a/news/templates/news/article_detail.html +++ b/news/templates/news/article_detail.html @@ -15,7 +15,7 @@ {% endif %} - +

{{ article.content }}

diff --git a/users/migrations/0008_remove_profile_tag.py b/users/migrations/0008_remove_profile_tag.py new file mode 100644 index 0000000..92df299 --- /dev/null +++ b/users/migrations/0008_remove_profile_tag.py @@ -0,0 +1,17 @@ +# Generated by Django 3.1 on 2020-08-16 00:41 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('users', '0007_profile_tag'), + ] + + operations = [ + migrations.RemoveField( + model_name='profile', + name='tag', + ), + ]