School attendence model
im trying to put in a database system for a school.
I want to create a attendance system where a monthly excel sheet with attendance of the kids will be uploaded to Django admin.How can I achieve this.
MODELS.py
class Child_attendence(models.Model):
child = models.ForeignKey(Child, related_name='attendence', unique_for_date="date")
date = models.DateField()
report = models.BooleanField()
@property
def standard(self):
return self.child.standard
def __str__(self):
return self.child.first_name
ADMIN.PY
class Child_attendenceAdmin(ImportExportModelAdmin):
list_display = ['str',"standard", 'date','report']
search_fields = ['str', 'date']
class Meta:
model= Child_attendence
admin.site.register(Child_attendence, Child_attendenceAdmin)
the way the data on excel sheet is different from the way the admin has, how can I solve this????
this is how the excel data looks like
[https://i.stack.imgur.com/1vpaa.png][1]
this is how my data looks like.
[https://i.stack.imgur.com/pKigQ.png][2]
this is how my admin looks like.
[https://i.stack.imgur.com/qPXwt.png][3]
I want my admin too look like the data in excel sheet.
django-models
add a comment |
im trying to put in a database system for a school.
I want to create a attendance system where a monthly excel sheet with attendance of the kids will be uploaded to Django admin.How can I achieve this.
MODELS.py
class Child_attendence(models.Model):
child = models.ForeignKey(Child, related_name='attendence', unique_for_date="date")
date = models.DateField()
report = models.BooleanField()
@property
def standard(self):
return self.child.standard
def __str__(self):
return self.child.first_name
ADMIN.PY
class Child_attendenceAdmin(ImportExportModelAdmin):
list_display = ['str',"standard", 'date','report']
search_fields = ['str', 'date']
class Meta:
model= Child_attendence
admin.site.register(Child_attendence, Child_attendenceAdmin)
the way the data on excel sheet is different from the way the admin has, how can I solve this????
this is how the excel data looks like
[https://i.stack.imgur.com/1vpaa.png][1]
this is how my data looks like.
[https://i.stack.imgur.com/pKigQ.png][2]
this is how my admin looks like.
[https://i.stack.imgur.com/qPXwt.png][3]
I want my admin too look like the data in excel sheet.
django-models
add a comment |
im trying to put in a database system for a school.
I want to create a attendance system where a monthly excel sheet with attendance of the kids will be uploaded to Django admin.How can I achieve this.
MODELS.py
class Child_attendence(models.Model):
child = models.ForeignKey(Child, related_name='attendence', unique_for_date="date")
date = models.DateField()
report = models.BooleanField()
@property
def standard(self):
return self.child.standard
def __str__(self):
return self.child.first_name
ADMIN.PY
class Child_attendenceAdmin(ImportExportModelAdmin):
list_display = ['str',"standard", 'date','report']
search_fields = ['str', 'date']
class Meta:
model= Child_attendence
admin.site.register(Child_attendence, Child_attendenceAdmin)
the way the data on excel sheet is different from the way the admin has, how can I solve this????
this is how the excel data looks like
[https://i.stack.imgur.com/1vpaa.png][1]
this is how my data looks like.
[https://i.stack.imgur.com/pKigQ.png][2]
this is how my admin looks like.
[https://i.stack.imgur.com/qPXwt.png][3]
I want my admin too look like the data in excel sheet.
django-models
im trying to put in a database system for a school.
I want to create a attendance system where a monthly excel sheet with attendance of the kids will be uploaded to Django admin.How can I achieve this.
MODELS.py
class Child_attendence(models.Model):
child = models.ForeignKey(Child, related_name='attendence', unique_for_date="date")
date = models.DateField()
report = models.BooleanField()
@property
def standard(self):
return self.child.standard
def __str__(self):
return self.child.first_name
ADMIN.PY
class Child_attendenceAdmin(ImportExportModelAdmin):
list_display = ['str',"standard", 'date','report']
search_fields = ['str', 'date']
class Meta:
model= Child_attendence
admin.site.register(Child_attendence, Child_attendenceAdmin)
the way the data on excel sheet is different from the way the admin has, how can I solve this????
this is how the excel data looks like
[https://i.stack.imgur.com/1vpaa.png][1]
this is how my data looks like.
[https://i.stack.imgur.com/pKigQ.png][2]
this is how my admin looks like.
[https://i.stack.imgur.com/qPXwt.png][3]
I want my admin too look like the data in excel sheet.
django-models
django-models
asked Nov 23 '18 at 6:47
sansan
65
65
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441841%2fschool-attendence-model%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441841%2fschool-attendence-model%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown