Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 1.44 KB

README.md

File metadata and controls

29 lines (15 loc) · 1.44 KB

Activities

  • let's create a CRUD(CREATE, READ, UPDATE, DESTROY) functionallity (the project already have the "posts" table with just 3 columns (name, description, date))

  • all the requests gonna be as JSON format using AJAX from the front end

  • to add the value date in the column "date" of posts table you are gonna need to add a datepicker library https://bootstrap-datepicker.readthedocs.io/en/latest/

  • below the index table view of the posts you are gonna have a calendar (full-calendar) library showing the posts in the corresponding date of the calendar for example Post with id = 1 was set to date = 20/01/2020 in that day of the calendar you must show the record as item (please check the library documentation) https://fullcalendar.io/

  • Add Bootstrap 3 or 4 for the front end https://getbootstrap.com/

  • responsive design in all the views

  • Pagination (Pagy gem) https://github.com/ddnexus/pagy

Not need but would be nice to have