Skip to content
This repository was archived by the owner on Sep 3, 2020. It is now read-only.

Commit 3ce9010

Browse files
committed
fix
1 parent 3c21a39 commit 3ce9010

17 files changed

+39
-1
lines changed

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,22 @@ docs/_build/
5252

5353
# PyBuilder
5454
target/
55+
56+
.DS_Store
57+
# If you need to exclude files such as those generated by an IDE, use
58+
# $GIT_DIR/info/exclude or the core.excludesFile configuration variable as
59+
# described in https://git-scm.com/docs/gitignore
60+
61+
*.egg-info
62+
*.pot
63+
*.py[co]
64+
__pycache__
65+
MANIFEST
66+
dist/
67+
docs/_build/
68+
docs/locale/
69+
node_modules/
70+
tests/coverage_html/
71+
tests/.coverage
72+
build/
73+
tests/report/

db.sqlite3

8 KB
Binary file not shown.

qa/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class QuestionForm(forms.ModelForm):
66
class Meta:
77
model = Question
8-
fiels = ('question_text', 'tags')
8+
fields = ('question_text', 'tags')
99

1010
class UserForm(forms.ModelForm):
1111
password = forms.CharField(widget=forms.PasswordInput())

qa/migrations/0001_initial.pyc

52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.

qa/migrations/0004_userprofile.pyc

52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.

qa/migrations/0008_answer_votes.pyc

52 Bytes
Binary file not shown.

qa/migrations/0009_comment.pyc

52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.

qa/migrations/0011_question_views.pyc

52 Bytes
Binary file not shown.
52 Bytes
Binary file not shown.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import models, migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('qa', '0019_question_closed'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='userprofile',
16+
name='picture',
17+
field=models.ImageField(upload_to=b'qa/static/profile_images', blank=True),
18+
),
19+
]

qa/migrations/__init__.pyc

26 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)