writing django code in a template code example
Example 1: use django taggit in template
from django.db import models
from taggit.managers import TaggableManager
class MyObject(models.Model):
title = models.CharField(max_length=100)
content = models.TextField()
tags = TaggableManager()
{% for object in objects %}
<h2>{{ object.title }}</h2>
<p>{{ object.content }}</p>
<ul>
{% for tag in object.tags.all %}
<li> {{ tag.name }} </li>
{% endfor %}
</ul>
{% endfor %}
Example 2: django template examples
{% load static %}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{% block page_meta %}
{% endblock %}
{
{% block vendor_css %}
<link rel="stylesheet" type="text/css" media="all" href="{% static 'css/vendor.css' %}" />
{% endblock %}
{
{% block site_css %}
<link rel="stylesheet" type="text/css" media="all" href="{% static 'css/application.css' %}" />
{% endblock %}
{
{% autoescape off %}
{% block page_css %}{% endblock %}
{% endautoescape %}
{% block extra_head %}
{
{% endblock %}
<title>{% block page_title %}{% endblock %}</title>
</head>
<body class="{% block body_class %}{% endblock %}">
{% block body %}
{
{% endblock %}
{
{% block modals %}
{% endblock %}
{
{% block vendor_js %}
<script src="{% static 'js/vendor.js' %}"></script>
{% endblock %}
{
{% block site_js %}
<script src="{% static 'js/application.js' %}"></script>
{% endblock %}
{
<script type="text/javascript">
window._sharedData = {
{% autoescape off %}
{% block shared_data %}
'DEBUG': {% if debug %}true{% else %}false{% endif %},
{% endblock %}
{% endautoescape %}
}
</script>
{
{% autoescape off %}
{% block page_js %}
{% endblock %}
{% endautoescape %}
</body>
</html>