{% extends "base.html" %} {% load static i18n %} {% block content %}

Example.com

{% trans "Imagine that this is a real site" %}

{% trans "Pretend that this is the homepage of a big Django site." %}

{% trans "Imagine lots of things are here:" %}

{% trans "In other words, these are items that we can introspect through the Django admin." %}

{% trans "Under the hood" %}

{% trans "Now, explore the Django admin for example.com. Click on either of the following:" %}

{% url "admin:index" as admin_url %}

{% blocktrans %}The original Django Admin{% endblocktrans %}

{% trans "Powered by django.contrib.admin. This is just here for reference." %}

{% url "admin2:dashboard" as admin2_url %}

{% blocktrans %}The new Admin2{% endblocktrans %}

{% trans "Powered by django-admin2." %}


{% url 'blog_list' as blog_url %}

{% blocktrans %}See the Blog in Action{% endblocktrans %}

{% endblock %}