You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The UI of the admin panel for adding credentials is not very intuitive. If you select "Basic", it still requests "key" and "secret", instead of something like "username" and "password" or so. Maybe we should have custom forms for this type of stuff (or different tables, whatever is easier to maintain).
For instance, in WebLab-Deusto we use the default "Create" with small customizations (hashing, etc.), but for permissions we created new forms from scratch. You can see them here.
In the same way, I did some tricks when adding a new ReLMS which I'm not comfortable with, since it is strongly coupled with the internal implementation of wtforms. Using different panels would be easier, and it would not require changing the API.
The text was updated successfully, but these errors were encountered:
Yes, I'm not worried with being coupled to wtforms at this stage (we're using it anyway). If we're using its public interface, that's fine. But in the ReLMS creation panel, I check the HTML generated by it, generate a replacements so as to refresh the website when selecting one option or another. And this might even be too complicated for inline models.
That's why I would like to replace the whole "Create" panel in the case of ReLMS and LMSs. I would simply add a can_create = False and then provide custom forms for each thing. And since this would be a "native feature", it is not in conflict with #10 (which is thought for third party plug-ins).
The UI of the admin panel for adding credentials is not very intuitive. If you select "Basic", it still requests "key" and "secret", instead of something like "username" and "password" or so. Maybe we should have custom forms for this type of stuff (or different tables, whatever is easier to maintain).
For instance, in WebLab-Deusto we use the default "Create" with small customizations (hashing, etc.), but for permissions we created new forms from scratch. You can see them here.
In the same way, I did some tricks when adding a new ReLMS which I'm not comfortable with, since it is strongly coupled with the internal implementation of wtforms. Using different panels would be easier, and it would not require changing the API.
The text was updated successfully, but these errors were encountered: