summaryrefslogtreecommitdiff
path: root/bak/unused_apps/essays/views.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2023-07-28 13:39:02 -0500
committerluxagraf <sng@luxagraf.net>2023-07-28 13:39:02 -0500
commit9a620cf42bf1fe6977e378bd834b41ff4a593dde (patch)
treecf41a0582681cecaf88a30bfe409f9c2be57972a /bak/unused_apps/essays/views.py
parent6e5897117124cd60ae81efb1574c6347f48e60e5 (diff)
main: removed some apps I wasn't using and added bak to git to preserve
a copy of old apps
Diffstat (limited to 'bak/unused_apps/essays/views.py')
-rw-r--r--bak/unused_apps/essays/views.py47
1 files changed, 47 insertions, 0 deletions
diff --git a/bak/unused_apps/essays/views.py b/bak/unused_apps/essays/views.py
new file mode 100644
index 0000000..f8c68c7
--- /dev/null
+++ b/bak/unused_apps/essays/views.py
@@ -0,0 +1,47 @@
+from django.views.generic import ListView
+from django.views.generic.detail import DetailView
+from django.contrib.syndication.views import Feed
+
+
+from .models import Essay
+
+
+class EssayListView(ListView):
+ model = Essay
+
+ def get_queryset(self, **kwargs):
+ qs = Essay.objects.filter(status=1)
+ return qs
+
+
+class EntryDetailView(DetailView):
+ model = Essay
+
+
+class EntryDetailViewTXT(EntryDetailView):
+ template_name = "essays/entry_detail.txt"
+
+
+'''
+class TopicListView(ListView):
+ template_name = 'archives/src_home.html'
+
+ def queryset(self):
+ return Post.objects.filter(topics__slug=self.kwargs['slug'])
+
+ def get_context_data(self, **kwargs):
+ # Call the base implementation first to get a context
+ context = super(TopicListView, self).get_context_data(**kwargs)
+ context['topic'] = Topic.objects.get(slug__exact=self.kwargs['slug'])
+ return context
+
+
+class SrcRSSFeedView(Feed):
+ title = "luxagraf:src Code and Technology"
+ link = "/src/"
+ description = "Latest postings to luxagraf.net/src"
+ description_template = 'feeds/blog_description.html'
+
+ def items(self):
+ return Post.objects.filter(status__exact=1).order_by('-pub_date')[:10]
+'''