Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library_management/config/desktop.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ def get_data():
return {
"Library Management": {
"color": "#589494",
"icon": "icon-book",
"icon": "octicon octicon-book",
"type": "module",
"label": _("Library Management")
}
Expand Down
2 changes: 1 addition & 1 deletion library_management/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
app_title = "Library Management"
app_publisher = "Frappe"
app_description = "App for managing Articles, Members, Memberships and Transactions for Libraries"
app_icon = "icon-book"
app_icon = "octicon octicon-book"
app_color = "#589494"
app_email = "info@frappe.io"
app_url = "https://frappe.io/apps/library_management"
Expand Down

This file was deleted.

13 changes: 13 additions & 0 deletions library_management/templates/includes/list/row_template.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<div class="row">
<div class="col-sm-4">
<a href="/article/{{ doc.name }}">
<img src="{{ doc.image }}" class="img-responsive" style="max-height: 200px">
</a>
</div>
<div class="col-sm-4">
<a href="/article/{{ doc.name }}"><h4>{{ doc.article_name }}</h4></a>
<p>{{ doc.author }}</p>
<p>{{ (doc.description[:200] + "...") if doc.description|length > 200 else doc.description }}</p>
<p class="text-muted">Publisher: {{ doc.publisher }}</p>
</div>
</div>