Submissions by drmargarido tagged webdev

Today I implemented the back end for a university forum.

  • Implemented management of questions and answer.
  • Created models with course, semester, discipline, forum, questions and answers.
  • Created tree with the data so it can be displayed as menus in the front end.
  • Create an api to manage this system.
  • Created unit tests using the django fixtures so I can use the whole db as a mock for my unit tests (Just found about it, it's super nice :D ).

Hey, it's my first post here so I will give a little bit of context. I'm building a web platform using lapis(My first time using lapis) , to allow people to look for jobs.

Today code:

  • Today I refactored my forms implementation to use a base template instead of having a different etlua file for each form.
  • Added a new login form.
  • Checked the available configuration parameters of lapis and did a configuration for development with performance benchmarking and another for production with cache and more secure configurations.
  • Started learning and testing the lapis database query interface and the database schema so I can build the data model.