climu / openstudyroom

Website for the Open Study Room online go/baduk/weiqi community.
https://openstudyroom.org
GNU General Public License v3.0
67 stars 33 forks source link

Added an html template for displaying league's results through an iframe #434

Closed LucasBertrand closed 3 years ago

climu commented 3 years ago

Looks good. I think you can remove can_quite, can_join and open_events from it thought.

climu commented 3 years ago

Also, I just realized that it won't work because of django x-frame security policy. There is a solution as documented here.

from django.views.decorators.clickjacking import xframe_options_exempt

@xframe_options_exempt
def ok_to_load_in_a_frame(request):
    return ...