view templates/classic/html/user.item.html @ 2077:3e0961d6d44d

Added the "actor" property. Metakit backend not done (still not confident I know how it's supposed to work ;) Currently it will come up as NULL in the RDBMS backends for older items. The *dbm backends will look up the journal. I hope to remedy the former before 0.7's release. Fixed a bunch of migration issues in the rdbms backends while I was at it (index changes for key prop changes) and simplified the class table update code for RDBMSes that have "alter table" in their command set (ie. not sqlite) ... migration from "version 1" to "version 2" still hasn't actually been tested yet though.
author Richard Jones <richard@users.sourceforge.net>
date Mon, 15 Mar 2004 05:50:20 +0000
parents 3a4abf6d48c2
children ee3cf6a44f29
line wrap: on
line source

<!-- dollarId: user.item,v 1.7 2002/08/16 04:29:04 richard Exp dollar-->
<tal:block metal:use-macro="templates/page/macros/icing">
<title metal:fill-slot="head_title"> 
<span tal:replace="config/TRACKER_NAME" />: 
<span tal:condition="context/id"
      tal:replace="string:User ${context/id}: ${context/username}" />
<tal:x tal:condition="not:context/id">New User</tal:x> 
</title> 
<span metal:fill-slot="body_title" tal:omit-tag="python:1">
  User<span tal:replace="context/id" />
   <tal:x tal:condition="context/is_edit_ok">Editing</tal:x>
 </span>

<td class="content" metal:fill-slot="content">
<span tal:condition="python:not (context.is_view_ok() or context.is_edit_ok())">
You are not allowed to view this page.
</span>

<form method="POST" onSubmit="return submit_once()"
      enctype="multipart/form-data" tal:condition="context/is_edit_ok"
      tal:attributes="action context/designator">

<table class="form">
 <tr>
  <th>Name</th>
  <td tal:content="structure context/realname/field">realname</td>
 </tr>
 <tr>
  <th>Login Name</th>
  <td tal:content="structure context/username/field">username</td>
 </tr>
 <tr>
  <th>Login Password</th>
  <td tal:content="structure context/password/field">password</td>
 </tr>
 <tr>
  <th>Confirm Password</th>
  <td tal:content="structure context/password/confirm">password</td>
 </tr>
 <tr tal:condition="python:request.user.hasPermission('Web Roles')">
  <th>Roles</th>
  <td tal:condition="context/id"
      tal:content="structure context/roles/field">roles</td>
  <td tal:condition="not:context/id">
   <input name="roles" tal:attributes="value db/config/NEW_WEB_USER_ROLES">
   (to give the user more than one role, enter a comma,separated,list)
  </td>
 </tr>
 <tr>
  <th>Phone</th>
  <td tal:content="structure context/phone/field">phone</td>
 </tr>
 <tr>
  <th>Organisation</th>
  <td tal:content="structure context/organisation/field">organisation</td>
 </tr>
 <tr>
  <th>Timezone</th>
  <td tal:content="structure context/timezone/field">timezone</td>
 </tr>
 <tr>
  <th>E-mail address</th>
  <td tal:content="structure context/address/field">address</td>
 </tr>
 <tr>
  <th>Alternate E-mail addresses<br>One address per line</th>
  <td tal:content="structure context/alternate_addresses/multiline">alternate_addresses</td>
 </tr>

 <tr>
  <td>
   &nbsp;
   <input type="hidden" name="@template" value="item">
   <input type="hidden" name="@required" value="username,address">
  </td>
  <td tal:content="structure context/submit">submit button here</td>
 </tr>
</table>
</form>

<table class="otherinfo" tal:condition="python:context.queries and context.is_view_ok()">
 <tr><th colspan="3" class="header">Queries</th></tr>
 <tr><th>Name</th><th colspan="2">Actions</th></tr>
 <tr tal:repeat="query context/queries">
  <td><a tal:attributes="href string:query${query/id}"
         tal:content="query/name"></a></td>
  <td>
   <a tal:attributes="href string:${query/klass}?${query/url}">display</a>   
  </td>
  <td>
   <a tal:attributes="href string:?@remove@queries=${query/id}&@action=edit">remove</a>
  </td>
 </tr>
</table>

<table class="form" tal:condition="context/is_only_view_ok">
 <tr>
  <th colspan=2 class="header" tal:content="context/realname">realname</th>
 </tr>
 <tr>
  <th>Login Name</th>
  <td tal:content="context/username">username</td>
 </tr>
 <tr>
  <th>Phone</th>
  <td tal:content="context/phone">phone</td>
 </tr>
 <tr>
  <th>Organisation</th>
  <td tal:content="context/organisation">organisation</td>
 </tr>
 <tr>
  <th>Timezone</th>
  <td tal:content="context/timezone">timezone</td>
 </tr>
 <tr>
  <th>E-mail address</th>
  <td tal:content="context/address/email">address</td>
 </tr>
</table>

<tal:block tal:condition="python:context.id and context.is_view_ok()"
           tal:replace="structure context/history" />

</td>

</tal:block>

Roundup Issue Tracker: http://roundup-tracker.org/