diff options
Diffstat (limited to 'design/templates')
-rw-r--r-- | design/templates/admin/index.html | 27 | ||||
-rw-r--r-- | design/templates/base.html | 3 |
2 files changed, 29 insertions, 1 deletions
diff --git a/design/templates/admin/index.html b/design/templates/admin/index.html index f7e043a..d2206b0 100644 --- a/design/templates/admin/index.html +++ b/design/templates/admin/index.html @@ -28,6 +28,33 @@ td, th { {% load admin_reorder %} {% if app_list %} {% app_order %} + <div class="module"> + <table> + <caption><a href="{{ app.app_url }}" class="section" title="{% blocktrans with name=app.name %}Models in the {{ name }} application{% endblocktrans %}">Frequently Used</a></caption> + <tr> + <th scope="row"><a href="/admin/jrnl/entry/">jrnl entries</a></th> + <td><a href="/admin/jrnl/entry/add/" class="addlink">{% trans 'Add' %}</a></td></tr> + <tr> + <th scope="row"><a href="/admin/django_comments/comment/">moderate comments</a></th> + </tr> + <tr> + <th scope="row"><a href="/admin/notes/luxnote/">notes</a></th> + <td><a href="/admin/notes/luxnote/add/" class="addlink">Add</a></td> + </tr> + <tr> + <th scope="row"><a href="/admin/photos/luximage/">photos</a></th> + <td><a href="/admin/photos/luximage/add/" class="addlink">Add</a></td> + </tr> + <tr> + <th scope="row"><a href="/admin/photos/luxgallery/">galleries</a></th> + <td><a href="/admin/photos/luxgallery/add/" class="addlink">Add</a></td> + </tr> + <tr> + <th scope="row"><a href="/admin/syndication/syndicateditem/">Syndicated items</a></th> + <td><a href="/admin/syndication/syndicateditem/add/" class="addlink">Add</a></td> + </tr> + </table> + </div> {% for app in app_list %} <div class="module"> <table> diff --git a/design/templates/base.html b/design/templates/base.html index 65280e2..8c4cd8d 100644 --- a/design/templates/base.html +++ b/design/templates/base.html @@ -4,10 +4,11 @@ <head> <title>{% block pagetitle %}Luxagraf - Topografical Writings{% endblock %}</title>{%endblock%} <meta charset="utf-8"> + <meta http-equiv="x-ua-compatible" content="ie=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="{% block metadescription %}Luxagraf: recording journeys around the world and just next door.{% endblock %}"> <meta name="author" content="Scott Gilbertson"> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!--[if IE]> <script src="/js/html5css3ie.min.js"></script> <![endif]--> |