Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Analytics-workshop-3 contents #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ You will be Introduced to Django Framework
You will learn how to create simple Django applications

## Schedule
| Time | Topics |
|----------------|---------------------------------------------------|
| 10:00 - 10:30 | [`HTTP Response & Requests`](http_req_and_res.md) |
| 01:30 - 03:30 | [`Django`](python_django.md) |
| 12:00 - 01:30 | [`Break`] |
| 12:00 - 01:30 | [`Docker and Django`](django_docker.md) |
| Time | Topics |
|---------------|---------------------------------------------------|
| 10:00 - 10:30 | [`HTTP Response & Requests`](http_req_and_res.md) |
| 10:30 - 11:30 | [`Docker and Django`](django_docker.md) |
| 11:30 - 11:45 | [`Break`] |
| 11.45 - 01:00 | [`Django setting, models etc`](excersise1.md) |
| 01.00 - 02:00 | [`Break`] |
| 02.00 - 03:00 | [`API, Django Admin`](excersise2.md) |
| 03:00 - 04:00 | [`Polls app`](excersise3.md) |
2 changes: 1 addition & 1 deletion excersise4.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Now, create a polls/results.html template:
{% endfor %}
</ul>

<a href="{% url 'polls:detail' question.id %}">Vote again?</a>
<a href="{% url 'detail' question.id %}">Vote again?</a>
```

Now, go to /polls/1/ in your browser and vote in the question. You should see a results page that gets updated each time you vote. If you submit the form without having chosen a choice, you should see the error message.
Expand Down