Re: [mezzanine-users] Enable RichTextField().formfield() for registered users

2017-06-04 Thread Diego Castro
n the form and > using the rich text editor for text only. > > On Jun 4, 2017 3:12 PM, "Diego Castro" > > wrote: > >> Thank you for your answer Eduardo. No, I had not included >> {{form.media}}. Now the richtextfield is displayed correctly, thank you >

Re: [mezzanine-users] Enable RichTextField().formfield() for registered users

2017-06-04 Thread Diego Castro
Thank you for your answer Eduardo. No, I had not included {{form.media}}. Now the richtextfield is displayed correctly, thank you very much. But there is a problem, if I want to load an image the following error appears Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000

[mezzanine-users] Enable RichTextField().formfield() for registered users

2017-06-04 Thread Diego Castro
Hello, I have created a form that is added to a page using decorators in a page processor. This is the form: class ExperimentForm(forms.Form): nombre = forms.CharField() texto = RichTextField().formfield() The problem I have is to display "RichTextField().formfield()" to registered use

[mezzanine-users] Re: Button to create new page

2017-05-30 Thread Diego Castro
Thank you very much for the answer, sorry for the delay in answering. I was reviewing the Django forms and I was able to add a button that creates a new page. This is the draft of the project: https://github.com/Dacastror/test-new-page The problem I have now is to add a new page but that is a chil

[mezzanine-users] Button to create new page

2017-05-18 Thread Diego Castro
Hi, I'm new to Mezzanine and django, in this moment I'm trying to make a button in a page template, the idea is to allow the registered user to do two things: - create a new daughter page of the current page - add an access link to a list of links of the current page I would like to mak