Как получить значение сессии userid в adddomainwiseprojects - django (используя метод inline formset)
Здесь я приложил views.py, где поля add_projectdomain добавлены путем импорта моделей, здесь как я могу получить loginid т.е. ключ сессии (userid) (как я получил в представлении company_details с помощью метода reuest.session.get) в форме Add_domainwise projects и сохранить его.
views.py
models.py
forms.py
from django.forms import ModelForm
from .models import Add_domainwise_projects
class Add_domainwise_projectsForm(ModelForm):
class Meta:
model=Add_domainwise_projects
fields='__all__'
domainwiseproject_form.html
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>form</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
</head>
<body>
<form action="" method="POST">
{% csrf_token%}
{% for form in formset%}
{{ formset.management_form }}
{{form}}
<hr>
{% endfor %}
<input type="submit" name="Submit">
</form>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<script src="" async defer></script>
</body>
</html>