-
-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tool to monitor feedback #794
Comments
Sounds like a good contribution for first-time contributors (or anybody else, of course). |
Hello, I will grab this one. Can I have some additional info? What should it look like, what information sould be included etc. |
I think the best thing to do would be to add a list of feedbacks received, as stated in the original ticket. It would be available to organisers in the same way the list of all submissions is available. I'm not sure which level of information/guidance you are looking for, so feel free to ask for clarification! |
Is some demo database available? The system is pretty complex and as I need to go through complet event process, it would be nice to have already filled up data. |
You can import another event's export by running the |
As I order feedbacks by talk.talk_id, they are "grouped" together and it is not necessary to have talk/submission title above every feedback. I would like to have the title just once and then all associated feedbacks to this talk. Normally I would do it in template cycle, comparing talk id to talk id in previous cycle. And if this changes, show new talk title. But this seems almost impossible in Django templating system, as it does not support assigning and changing variable values. Any tips? You can check the commit here |
And maybe it should be sorted by id, so you can still easily check the latest feedback. |
You should be able to iterate over |
But I will not be able to paginate over them and it will not be easy to monitor new feedback - I think that's the main point of this issue. So maybe we should order just by id to show the latest feedback at the top. |
You could still order by the latest feedback entry, if you'd like, that's somewhat independent of the other question. Pagination and grouping usually goes hand in hand, though, so if you want to group by submission, you should also paginate by submission, imo. If you don't want to do that, you can of course first paginate by feedback, and then group by submission – it would be easiest to do that in the view, not in the template. |
Closed via #798 |
Problem you are facing
We've successfuly finished our first event using Pretalx. On the orga area dashboard, the last bullet is lit and its tooltip says that we should monitor incoming feedback.
Right now we have 80 talks. It is virtually impossible to monitor feedback in all the talks one by one.
Instead, I look directly into the database like this:
Possible Solution
There should be a page summarising all incoming reviews for all talks.
The text was updated successfully, but these errors were encountered: