Fork de wikipp, le moteur de wiki en c++, basé sur cppcms. Le fork ajoute la langue française
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

options_content.h 469B

123456789101112131415161718192021222324252627
  1. #ifndef OPTIONS_CONTENT_H
  2. #define OPTIONS_CONTENT_H
  3. #include "master_content.h"
  4. namespace content {
  5. struct options_form : cppcms::form {
  6. cppcms::widgets::checkbox users_only;
  7. cppcms::widgets::text contact_mail;
  8. cppcms::widgets::text wiki_title;
  9. cppcms::widgets::textarea about;
  10. cppcms::widgets::text copyright;
  11. cppcms::widgets::submit submit;
  12. options_form();
  13. };
  14. struct edit_options: public master {
  15. options_form form;
  16. };
  17. } // namespace content
  18. #endif