Mercurial > p > roundup > code
view templates/minimal/html/home.html @ 2693:59ea85d47d34
add dbnamestr argument to connection_dict...
...passed to rdbms_common.connection_dict instead of hard-coded 'db'.
this allows maintenance procedures (db_nuke, db_create, db_exists)
to connect without specifying roundup database name:
these functions must not require existing roundup database.
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sun, 26 Sep 2004 15:16:02 +0000 |
| parents | 54a0869b92e4 |
| children |
line wrap: on
line source
<tal:block metal:use-macro="templates/page/macros/icing"> <title metal:fill-slot="head_title" i18n:translate="">Tracker home - <span i18n:name="tracker" tal:replace="config/TRACKER_NAME" /></title> <span metal:fill-slot="body_title" tal:omit-tag="python:1" i18n:translate="">Tracker home</span> <td class="content" metal:fill-slot="content"> <!-- This is the default body that is displayed when people visit the tracker. The tag below lists the currently open issues. You may replace it with a greeting message, or a different list of issues or whatever. It's a good idea to have the issues on the front page though --> <tal:block tal:define="anon python:request.user.username == 'anonymous'"> <p tal:condition="not:anon" class="help" i18n:translate=""> Please select from one of the menu options on the left. </p> <p tal:condition="anon" class="help" i18n:translate=""> Please log in or register. </p> </tal:block> </td> </tal:block>
