List all sessions in allsessions page#193
Conversation
oshc/main/migrations/0002_video.py
Outdated
| migrations.CreateModel( | ||
| name='video', | ||
| fields=[ | ||
| ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
There was a problem hiding this comment.
line too long (114 > 79 characters)
…eHelpCommunity.github.io into issue1
| ('profile_name', models.CharField(help_text="The person's name", | ||
| max_length=128)), | ||
| ('profile_url', models.URLField(help_text="The Url of the " + | ||
| "person's website")), |
There was a problem hiding this comment.
continuation line over-indented for visual indent
line too long (80 > 79 characters)
| serialize=False, verbose_name='ID')), | ||
| ('name', models.CharField(help_text='Session title', | ||
| max_length=128)), | ||
| ('profile_name', models.CharField(help_text="The person's name", |
There was a problem hiding this comment.
line too long (80 > 79 characters)
| ('id', models.AutoField(auto_created=True, primary_key=True, | ||
| serialize=False, verbose_name='ID')), | ||
| ('name', models.CharField(help_text='Session title', | ||
| max_length=128)), |
There was a problem hiding this comment.
continuation line under-indented for visual indent
| ('description', models.TextField( | ||
| help_text='Session details', max_length=512)), | ||
| ('id', models.AutoField(auto_created=True, primary_key=True, | ||
| serialize=False, verbose_name='ID')), |
There was a problem hiding this comment.
continuation line under-indented for visual indent
| return render(request, 'journey.html', context={'Journey': journey_list}) | ||
|
|
||
|
|
||
|
|
|
|
||
| def handler404(request): | ||
| response = render_to_response('404.html', {}, | ||
| context_instance=RequestContext(request)) |
|
|
||
|
|
||
| def handler404(request): | ||
| response = render_to_response('404.html', {}, |
There was a problem hiding this comment.
undefined name 'render_to_response'
| def submit_contest(request): | ||
| return render(request, 'contest_submission.html') | ||
|
|
||
| def chat_sessions(request): |
| profile_name = models.CharField( | ||
| max_length=128, help_text="The person's name") | ||
| <<<<<<< issue1 | ||
| name = models.CharField(max_length=128, help_text="Session title") |
| title = models.CharField(max_length=128, help_text="Session title") | ||
| profile_name = models.CharField( | ||
| max_length=128, help_text="The person's name") | ||
| <<<<<<< issue1 |
There was a problem hiding this comment.
IndentationError: expected an indented block
expected 2 blank lines after class or function definition, found 0
expected an indented block
missing whitespace around bitwise or shift operator
missing whitespace around operator
fixes #1.
no reviews.