<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://dokuwiki.starlab.cz/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://dokuwiki.starlab.cz/feed.php">
        <title>Starlab knowledge base python:django</title>
        <description></description>
        <link>http://dokuwiki.starlab.cz/</link>
        <image rdf:resource="http://dokuwiki.starlab.cz/lib/tpl/desert/images/favicon.ico" />
       <dc:date>2026-06-03T00:41:44+0200</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://dokuwiki.starlab.cz/doku.php?id=python:django:signups-users&amp;rev=1410364696&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://dokuwiki.starlab.cz/lib/tpl/desert/images/favicon.ico">
        <title>Starlab knowledge base</title>
        <link>http://dokuwiki.starlab.cz/</link>
        <url>http://dokuwiki.starlab.cz/lib/tpl/desert/images/favicon.ico</url>
    </image>
    <item rdf:about="http://dokuwiki.starlab.cz/doku.php?id=python:django:signups-users&amp;rev=1410364696&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-10T17:58:16+0200</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>python:django:signups-users</title>
        <link>http://dokuwiki.starlab.cz/doku.php?id=python:django:signups-users&amp;rev=1410364696&amp;do=diff</link>
        <description>Sign-ups, users, logins

We want to add users into out application. First we create a new application
 python manage.py startapp customers
models.py


# null= se tyka databaze, kdezto
# blank= se tyka vyplneni formulare
from django.utils.encoding import smart_unicode

class customer(models.Model): 
        first_name = models.CharField(max_length=120, null=True, blank=True)
        last_name = models.CharField(max_length=120, null=True, blank=True)
        email = models.EmailField(null=False, b…</description>
    </item>
</rdf:RDF>
