You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
437 B
Python
28 lines
437 B
Python
|
|
|
|
from django.shortcuts import render, get_object_or_404
|
|
from support.models import *
|
|
from osinacore.decorators import *
|
|
|
|
|
|
|
|
def add_ticket_department_modal(request):
|
|
|
|
context = {
|
|
|
|
}
|
|
|
|
return render(request, 'add_templates/add-ticket-department-modal.html', context)
|
|
|
|
|
|
|
|
|
|
def add_ticket_member_modal(request):
|
|
|
|
context = {
|
|
|
|
}
|
|
|
|
return render(request, 'add_templates/add-ticket-member-modal.html', context)
|
|
|