summaryrefslogtreecommitdiff
path: root/demos/blog-tutorial/protected/pages/Day4/Overview.page
blob: 74e691e337e20067d1497dae7d83eceded5363a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<com:TContent ID="Main">

<h1>Post Management Overview</h1>

<p>
In this section, we create pages that are related with post management. In particular, we implement the CRUD (Create-Retrieve-Update-Delete) operations with respect to blog posts.
</p>

<p>
According to the requirements, we need to create the following pages organized under a new directory <tt>protected/pages/posts</tt>.
</p>

<ul>
  <li><tt>ListPost</tt> displays posts by their creation time in descending order.</li>
  <li><tt>ReadPost</tt> displays the detail of a post.</li>
  <li><tt>NewPost</tt> allows registered users to create a new post.</li>
  <li><tt>EditPost</tt> allows the author or the administrator to edit an existing post.</li>
</ul>

<p>
After finishing this section, we shall expect to see the following directories and files:
</p>

<img src="<%~ directories.gif %>" class="output" />

</com:TContent>