teensyweb/
teensyweb/app/models/
teensyweb/app/views/account/
teensyweb/app/views/layouts/
teensyweb/app/views/notifications/
teensyweb/app/views/repository/
teensyweb/config/
teensyweb/config/environments/
teensyweb/db/migrate/
teensyweb/doc/
teensyweb/lib/
teensyweb/public/images/
teensyweb/public/javascripts/
teensyweb/public/stylesheets/
teensyweb/script/
teensyweb/script/performance/
teensyweb/script/process/
teensyweb/test/
teensyweb/test/fixtures/
teensyweb/test/fixtures/notifications/
<div class="app">
  <div class="forum">
    <%= "Subject: #{@post.topic.subject}" %><br/>
    <%= "Author: #{@post.user.login}" %><br/>
    <%= "Posted: #{ftime @post.created_at}" %><br />
    <hr />
    <%= format_post @post.data %>
    <br /><hr />
    <%= link_to 'reply', {:action => 'postreply', :id => @post.id} %>
    <% if owner?(@post.user_id) %>
      <%= link_to 'edit', {:action => 'postedit', :id => @post.id} %>
    <% end %>  
    <% if admin? %>
      <%= link_to 'delete', {:action => 'postdelete', :id => @post.id} %>
    <% end %>  
  </div>  
</div>