mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-07 00:11:05 +00:00
- add app example.files with tests, based on example2. - add check in base update template which checks if form.is_multitype and adds the encoding for it - update gitignore to ignore the uploaded media folder - add test to blog to ensure that the create form is not multipart encoded
10 lines
319 B
HTML
10 lines
319 B
HTML
{% extends "djadmin2theme_default/base.html" %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<h1>{% trans "Example Home" %}</h1>
|
|
|
|
<ul>
|
|
<li><a href="{% url "admin2:dashboard" %}">django-admin2</a></li>
|
|
<li><a href="{% url "admin:index" %}">django.contrib.admin</a> {% trans "(for reference)" %}</li>
|
|
</ul>
|
|
{% endblock %}
|