app/soc/templates/soc/docs/list/docs_row.html
author Chen Lunpeng <forever.clp@gmail.com>
Sat, 18 Oct 2008 05:59:04 +0000
changeset 381 8b9e8f5d119b
parent 377 d94ec6f104cc
permissions -rw-r--r--
Fixed not working to edit a doc that selected from the docs list view. soc/templates/soc/docs/list/docs_row.html not full updated. Patch by: Chen Lunpeng Review by: to-be-reviewed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
186
da76f08b1752 Add Users List Developer view which is available at /site/user/list. Add User list custom templates which are used with list_helpers. Add "Users List" link in base.html template.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     1
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
381
8b9e8f5d119b Fixed not working to edit a doc that selected from the docs list view. soc/templates/soc/docs/list/docs_row.html not full updated.
Chen Lunpeng <forever.clp@gmail.com>
parents: 377
diff changeset
     2
onclick="document.location.href='/docs/edit/{{ data_element.partial_path }}/{{ data_element.link_name }}'" name="name">
234
a019afb4b80f Implement a Developer list view of all Documents.
Todd Larsen <tlarsen@google.com>
parents: 186
diff changeset
     3
  <td align="right">
a019afb4b80f Implement a Developer list view of all Documents.
Todd Larsen <tlarsen@google.com>
parents: 186
diff changeset
     4
   <div class="title">
a019afb4b80f Implement a Developer list view of all Documents.
Todd Larsen <tlarsen@google.com>
parents: 186
diff changeset
     5
    <a class="noul"
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 342
diff changeset
     6
     href="/docs/edit/{{ data_element.partial_path }}/{{ data_element.link_name }}">{{ data_element.partial_path}}/{{ data_element.link_name }}</a>
234
a019afb4b80f Implement a Developer list view of all Documents.
Todd Larsen <tlarsen@google.com>
parents: 186
diff changeset
     7
   </div>
186
da76f08b1752 Add Users List Developer view which is available at /site/user/list. Add User list custom templates which are used with list_helpers. Add "Users List" link in base.html template.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
     8
  </td>
234
a019afb4b80f Implement a Developer list view of all Documents.
Todd Larsen <tlarsen@google.com>
parents: 186
diff changeset
     9
  <td><div class="title">{{ data_element.title }}</div></td>
298
c76a366c7ab4 Replace almost all occurences of linkname with link_name
Sverre Rabbelier <srabbelier@gmail.com>
parents: 234
diff changeset
    10
  <td><div class="link_name">{{ data_element.link_name }}</div></td>
329
2d90d49ce78a Add is_featured boolean property to the Work model, so that Works can be
Todd Larsen <tlarsen@google.com>
parents: 298
diff changeset
    11
  <td><div class="featured">{{ data_element.is_featured }}</div></td>
342
72482d8e5b34 Remove the proposed WorksAuthors many:many relation and promote the "founder"
Todd Larsen <tlarsen@google.com>
parents: 330
diff changeset
    12
  <td><div class="author">{{ data_element.author.link_name }}</div></td>
234
a019afb4b80f Implement a Developer list view of all Documents.
Todd Larsen <tlarsen@google.com>
parents: 186
diff changeset
    13
  <td><div class="created">{{ data_element.created }}</div></td>
a019afb4b80f Implement a Developer list view of all Documents.
Todd Larsen <tlarsen@google.com>
parents: 186
diff changeset
    14
  <td><div class="modified">{{ data_element.modified }}</div></td>
186
da76f08b1752 Add Users List Developer view which is available at /site/user/list. Add User list custom templates which are used with list_helpers. Add "Users List" link in base.html template.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
diff changeset
    15
</tr>