Modified configs so that templates are rendered. Functionality and styling are NOT complete (need to change css framework)

This commit is contained in:
Matthew Smith
2019-10-01 18:10:34 +01:00
parent 1df971bbba
commit 6cff7c090c
13 changed files with 77 additions and 30 deletions

View File

@@ -28,11 +28,6 @@ class PasswordChange(auth_views.PasswordChangeView):
def get_success_url(self):
return reverse_lazy('profile_detail', kwargs={'pk': self.request.user.id})
class Index(LoginRequiredMixin, generic.TemplateView):
template_name = 'index.html'
class AssetList(LoginRequiredMixin, generic.ListView):
model = models.Asset
template_name = 'asset_list.html'