Lenguajes De Interfaz

martes, 26 de febrero de 2019

Practica djangogirls

Creamos un proyecto
archivos creados en el proyecto

Creamos una palicacion


"Setting"En Installed_APP le agregamos nuestra aplicación


En model agregamos el codigo siguiente
from django.db import models
from django.utils import timezone


class Post(models.Model):
    author = models.ForeignKey('auth.User', on_delete=models.CASCADE)
    title = models.CharField(max_length=200)
    text = models.TextField()
    created_date = models.DateTimeField(
            default=timezone.now)
    published_date = models.DateTimeField(
            blank=True, null=True)

    def publish(self):
        self.published_date = timezone.now()
        self.save()

    def __str__(self):
        return self.title



Agregar nuestro nuevo modelo a la base de datos, luego migramos los modelos

En admin.py ponemos el siguiente codigo

from django.contrib import admin
from .models import Post

admin.site.register(Post)


Corremos nuestro servidor, para ver si funciono vamos ingresamos en el url http://127.0.0.1:8000
y http://127.0.0.1:8000/admin/ para ingresar con nuestro usuario



Creamos un usario para entrar









ctrl+c para cerrar el servidor










No hay comentarios.:

Publicar un comentario