Changeset 1341:5f51725cad85
- Timestamp:
- 06/18/10 14:36:35 (2 years ago)
- Branch:
- default
- Location:
- zine/websetup
- Files:
-
- 2 edited
-
__init__.py (modified) (1 diff)
-
templates/layout.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zine/websetup/__init__.py
r1330 r1341 183 183 display_name='$username', 184 184 is_author=True 185 ). last_inserted_ids()[0]185 ).inserted_primary_key[0] 186 186 187 187 # insert a privilege for the user 188 188 privilege_id = e.execute(privileges.insert(), 189 189 name=BLOG_ADMIN.name 190 ). last_inserted_ids()[0]190 ).inserted_primary_key[0] 191 191 e.execute(user_privileges.insert(), 192 192 user_id=user_id, -
zine/websetup/templates/layout.html
r1063 r1341 100 100 border: 1px solid #ccc; 101 101 -moz-border-radius: 3px; 102 -webkit-border-radius: 3px; 103 border-radius: 3px; 102 104 cursor: pointer; 103 105 }
Note: See TracChangeset
for help on using the changeset viewer.