Skip to content

Commit

Permalink
Add information page
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidajafarbigloo authored Sep 17, 2024
1 parent fdf471f commit 56ae00e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions meta_creator/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ class CreatorView(TemplateView):
def get_context_data(self, **kwargs):
return {'creator': CreatorForm(self.metapath.name)}

# Thesis_navigation to homepage and information page_based on requiremment analysis
def homepage(request):
return render(request, 'index.html')

def information(request):
return render(request, 'meta_creator/information.html')

# Function for metadata extracting
def index(request):
"""
Expand Down

0 comments on commit 56ae00e

Please sign in to comment.