Book Image

CodeIgniter Web Application Blueprints

Book Image

CodeIgniter Web Application Blueprints

Overview of this book

Table of Contents (16 chapters)
CodeIgniter Web Application Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Summary


So. this is a fairly small application—perhaps one of the smallest in the book—but it's by no means not useful. You can use this to-do list as a really easy way to manage any tasks you might have on your plate; however, there's always room for improvement. There are a few things that you can do to add greater functionalities to the project, and these might include the following:

  • Adding a sorting feature: You could add sorting functions to only display late (overdue), done, or still-to-do tasks.

  • Adding a category: You could add a dropdown to the form that creates the tasks. This dropdown could (for example) have the colors Red, Green, Blue, Yellow, Orange, and so on. A task can be assigned a color and this color could be displayed in the table that displays each task. You could use the Bootstrap label markup; for example, the span warning label (<span class="label label-warning">Warning</span>) would give you a great block of color—change the word Warning, though!

  • Adding...