Skip to content

Commit c95b44e

Browse files
authored
Merge branch 'master' into master
2 parents 7048d8e + fe1bacb commit c95b44e

File tree

320 files changed

+5794
-4625
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

320 files changed

+5794
-4625
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The Django Girls Tutorial is licensed under a [*Creative Commons Attribution-Sha
1111

1212
The source code of the tutorial is [hosted on Github](https://github.com/DjangoGirls/tutorial). The Github [Fork & Pull workflow](https://help.github.com/articles/using-pull-requests) is used to accept and review changes.
1313

14-
The tutorial uses the [GitBook](https://www.gitbook.io/) service for publishing its documentation. [See more information about how Gitbook works](http://help.gitbook.io/).
14+
The tutorial uses the [GitBook](https://www.gitbook.com/) service for publishing its documentation. [See more information about how Gitbook works](https://help.gitbook.com/).
1515

1616
The tutorial is written in [Markdown mark up language](https://help.github.com/articles/markdown-basics).
1717

@@ -97,7 +97,7 @@ Example:
9797
To [email protected]:miohtama/tutorial.git
9898
b37ca59..fe36152 contributing -> contributing
9999

100-
If you don't want to download the Gitbook Editor app you can also go to the [Gitbook website](https://gitbook.com), sign up for free and work directly in your browser.
100+
If you don't want to download the Gitbook Editor app you can also go to the [Gitbook website](https://www.gitbook.com/), sign up for free and work directly in your browser.
101101

102102
# Making a pull request
103103

SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
# Summary
2+

crowdin.yaml

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
project_identifier: django-girls-tutorial
2-
api_key: 2be4b1707d0745bc96e9a5c9ffb4ca9b
3-
base_path: /Users/olasitarska/Desktop/Events/Django Girls/tutorial
4-
51
files:
6-
-
7-
source: "/en/**/*.md"
8-
translation: "/%two_letters_code%/%original_path%/%original_file_name%"
9-
ignore:
10-
- /_book
11-
- /node_modules
12-
- /CONTRIBUTING.md
13-
-
14-
source: "/en/*.md"
15-
translation: "/%two_letters_code%/%original_file_name%"
16-
ignore:
17-
- /_book
18-
- /node_modules
19-
- /CONTRIBUTING.md
2+
- source: /en/**/*.md
3+
translation: /%two_letters_code%/**/%original_file_name%

cs/css/README.md

Lines changed: 145 additions & 145 deletions
Large diffs are not rendered by default.

cs/deploy/README.md

Lines changed: 120 additions & 120 deletions
Large diffs are not rendered by default.

cs/deploy/install_git.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Stáhni Git z [git-scm.com](https://git-scm.com/) a postupuj podle pokynů.
1111
Pokud ho již nemáš nainstalovaný, git měl by být k dispozici pomocí Správce balíčků, zkus:
1212

1313
```
14-
sudo apt-get install git
15-
# or
16-
sudo yum install git
17-
# or
18-
sudo zypper install git
14+
sudo apt-get install git
15+
# or
16+
sudo yum install git
17+
# or
18+
sudo zypper install git
1919
```

cs/django_admin/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Chceš-li přidávat, upravovat a mazat příspěvky, které jsme právě vymode
55
Otevřeme soubor `blog/admin.py` a nahradíme jeho obsah následujícím kódem:
66

77
```python
8-
from django.contrib import admin
9-
from .models import Post
8+
from django.contrib import admin
9+
from .models import Post
1010

11-
admin.site.register(Post)
11+
admin.site.register(Post)
1212
```
1313

1414
Jak vidíš, importujeme (vkládáme) Post model definovaný v předchozí kapitole. Pro zviditelnění našeho modelu na admin stránce musíme zaregistrovat model pomocí `admin.site.register(Post)`.
@@ -22,12 +22,12 @@ OK, je čas se podívat na náš Post model. Nezapomeň spustit `Pythonu manage.
2222
Chceš-li se přihlásit, musíš vytvořit *superusera* - uživatele, který má kontrolu nad celou webovou stránkou. Vrať se do příkazového řádku, zadej `python manage.py createsuperuser` a stiskni klávesu enter. Po zobrazení výzvy zadej své uživatelské jméno (malá písmena, bez mezer), e-mailovou adresu a heslo. Nedělej si starosti, že nevidíš heslo, které zadáváš - tak to má být. Jen ho napiš a stiskni `enter` pro pokračování. Výstup by měl vypadat takto (kde uživatelské jméno a e-mail by měly být tvé vlastní):
2323

2424
```
25-
(myvenv) ~/djangogirls$ python manage.py createsuperuser
26-
Username: admin
27-
Email address: [email protected]
28-
Password:
29-
Password (again):
30-
Superuser created successfully.
25+
(myvenv) ~/djangogirls$ python manage.py createsuperuser
26+
Username: admin
27+
Email address: [email protected]
28+
Password:
29+
Password (again):
30+
Superuser created successfully.
3131
```
3232

3333
Vrať se do svého prohlížeče. Přihlas se pomocí pověření superuživatele, kterého jsi právě vytvořila; měla bys vidět Django admin dashboard/nástěnku.

0 commit comments

Comments
 (0)