cremcrem2devdev2diademsformagenericinstru_searchlamnlivemultiproductionrelease/1.4.4securitysocialstoragetestvideo
|
Last change
on this file since 3815c51 was
3815c51,
checked in by olivier <>, 6 years ago
|
- the media objects ID regex is now in the models, following DRY (see urls)
- media objects IDs are now validated at model level
- experimenting new logo by Julia
- trying some new layout + cleaned css
- renamed "dictionaries" to "enumerations"
- new PublishingStatus? enumerations model (you simply need to syncdb)
|
-
Property mode set to
100644
|
|
File size:
1.4 KB
|
| Line | |
|---|
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}> |
|---|
| 3 | <head> |
|---|
| 4 | <title>Telemeta</title> |
|---|
| 5 | <link rel="stylesheet" type="text/css" href="/css/telemeta.css" /> |
|---|
| 6 | {% block extra_style %}{% endblock %} |
|---|
| 7 | </head> |
|---|
| 8 | {% load i18n %} |
|---|
| 9 | <body> |
|---|
| 10 | <!-- |
|---|
| 11 | {% if user.is_authenticated and user.is_staff %} |
|---|
| 12 | <div id="user-tools">{% trans 'Welcome,' %} <strong>{% if user.first_name %}{{ user.first_name|escape }}{% else %}{{ user.username }}{% endif %}</strong>. {% block userlinks %}<a href="doc/">{% trans 'Documentation' %}</a> / <a href="password_change/">{% trans 'Change password' %}</a> / <a href="logout/">{% trans 'Log out' %}</a>{% endblock %}</div> |
|---|
| 13 | {% endif %} |
|---|
| 14 | --> |
|---|
| 15 | <div id="header"> |
|---|
| 16 | <div id="logo"> |
|---|
| 17 | <a href="{% url telemeta-home %}"><img src="/images/logo.png"></a> |
|---|
| 18 | </div> |
|---|
| 19 | |
|---|
| 20 | <div id="quick_search"> |
|---|
| 21 | <form action="{% url telemeta-quicksearch %}" method="GET"> |
|---|
| 22 | <input id="quick_search_pattern" name="pattern" /> |
|---|
| 23 | <input type="submit" value="Search" /> |
|---|
| 24 | </form> |
|---|
| 25 | </div> |
|---|
| 26 | |
|---|
| 27 | <div id="menu"> |
|---|
| 28 | <a href="{% url telemeta-collections %}">Collections</a> | |
|---|
| 29 | <a href="{% url telemeta-items %}">Items</a> | |
|---|
| 30 | <a href="{% url telemeta-admin %}">Admin</a> |
|---|
| 31 | </div> |
|---|
| 32 | </div> |
|---|
| 33 | <div id="submenu"> |
|---|
| 34 | {% block submenu %}{% endblock %} |
|---|
| 35 | </div> |
|---|
| 36 | |
|---|
| 37 | <div id="content"> |
|---|
| 38 | {% block content %}{% endblock %} |
|---|
| 39 | </div> |
|---|
| 40 | |
|---|
| 41 | </body> |
|---|
| 42 | </html> |
|---|
Note: See
TracBrowser
for help on using the repository browser.