python скрипт.py &
proj/
└── templates
├── base.html
└── news.html
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="{% static main.css %}">
{% block additional_media1 %}{% endblock %}
{% block additional_media2 %}
<link rel="stylesheet" href="{% static else.css %}">
{% endblock %}
</head>
<body>
{% block body1 %}{% endblock %}
{% block body2 %}{% endblock %}
</body>
</html>
{% extends "base.html" %}
{% load staticfiles %}
{% block additional_media1 %}
<link rel="stylesheet" href="{% static news.css %}">
{% endblock %}
{% block additional_media2 %}
{{ block.super }}
<link rel="stylesheet" href="{% static else2.css %}">
{% endblock %}
{% block body1 %}lorem{% endblock %}
{% block body2 %}ipsum{% endblock %}
class Client(models.Model):
full_name = models.CharField('Full name', max_length=45)
class Document(models.Model):
description = models.CharField('Description', max_length=45)
client = models.ForeignKey('Client')
class Ticket(models.Model):
description = models.CharField('Description', max_length=255)
document = models.ForeignKey('Document')
class SongListView(ListView):
model = Song
context_object_name = 'songs_list'
template_name = 'songs_list.html'
paginate_by = 10
class AuthorSongListView(SongListView):
def get_queryset(self):
queryset = super(SongListView, self).get_queryset()
author = Author.objects.get(author_slug=self.kwargs.get('author_slug'))
return queryset.filter(song_author=author)
%CD%\project\bin\python.exe %CD%\project\src\manage.py runserver
============================================
ВЫДАНО кому : cru5ader
Настроящим сертификатом
подтверждается что cru5ader
обладает познаниями в сиcтеме Linux
лучше многих своих конкурентов!
Видел на картинках пингвинов,
а также Линуса и Билли!
Умеет включать компьютер!
ВЫДАНО кем :
Межпланетарный комитет проверки знаний
============================================