{% extends "base.html" %} {% load staticfiles 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:" %}

{% blocktrans with admin_url="/admin/" %}The original Django Admin{% endblocktrans %}

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

{% blocktrans with admin2_url="/admin2/" %}The new Admin2{% endblocktrans %}

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

{% endblock %}